- Change color from orange to blue; improve colors elsewhere
- Change `div.section` to `section`
- Rename  `posts` directory to `blog`
- Add ability to specify extra CSS files in `config.toml`
- Removed `WebFontsFile` feature from `config.toml`
- Remove the initials displayed on top right of single post pages
- Update example site
This commit is contained in:
Nishanth Shanmugham
2015-12-24 16:45:37 -06:00
parent 0d9d498caa
commit 204880aac9
19 changed files with 283 additions and 327 deletions

View File

@@ -0,0 +1,17 @@
+++
date = "2015-12-21T04:05:25-06:00"
draft = false
title = "Les Misérables by Victor Hugo"
+++
Although this detail has no connection whatever with the real substance of what we are about to relate, it will not be superfluous, if merely for the sake of exactness in all points, to mention here the various rumors and remarks which had been in circulation about him from the very moment when he arrived in the diocese.
### Bool
True or false, that which is said of men often occupies as important a place in their lives, and above all in their destinies, as that which they do. M. Myriel was the son of a councillor of the [Parliament of Aix](https://en.wikipedia.org/wiki/Parliament_of_Aix-en-Provence); hence he belonged to the nobility of the bar. It was said that his father, destining him to be the heir of his own post, had married him at a very early age, eighteen or twenty, in accordance with a custom which is rather widely prevalent in parliamentary families. In spite of this marriage, however, it was said that Charles Myriel created a great deal of talk. He was well formed, though rather short in stature, elegant, graceful, intelligent; the whole of the first portion of his life had been devoted to the world and
to gallantry.
> "The halls are nothing but rooms, and it is with difficulty that the air can be changed in them."
This conversation took place in the gallery dining-room on the ground-floor. The [Bishop](https://www.youtube.com/watch?v=dQw4w9WgXcQ) remained silent for a moment; then he turned abruptly to the director of the hospital.

View File

@@ -0,0 +1,23 @@
+++
date = "2015-12-21T04:03:46-06:00"
draft = false
title = "Metamorphosis by Franz Kafka"
+++
### Part One
One morning, when *Gregor Samsa* woke from troubled dreams, he found himself transformed in his bed into a horrible vermin.
> He lay on his armour-like back, and if he lifted his head a little he could see his brown belly, slightly domed and divided by arches into stiff sections.
The bedding was hardly able to cover it and seemed ready to slide off any moment. His many legs, pitifully thin compared with the size of the rest of him, waved about helplessly as he looked.
### Part Two
It was not until it was getting dark that evening that Gregor awoke from his deep and coma-like sleep. He would have woken soon afterwards anyway even if he hadn't been disturbed, as he had had enough sleep and felt fully rested. But he had the impression that some hurried steps and the sound of the door leading into the front room being carefully shut had woken him.
* He pushed himself over to the door, feeling his way clumsily with his antennae - of which he was now beginning to learn the value - in order to see what had been happening there.
* The whole of his left side seemed like one, painfully stretched scar, and he limped badly on his two rows of legs.
The light from the [electric street lamps](https://en.wikipedia.org/wiki/Street_light) shone palely here and there onto the ceiling and tops of the furniture, but down below, where Gregor was, it was dark.

View File

@@ -0,0 +1,29 @@
+++
date = "2015-08-25T17:09:14-05:00"
draft = false
title = "Use @ instead of HEAD"
slug = 'use-at-instead-of-head'
+++
I recently discovered that from git version [1.8.5](https://github.com/git/git/blob/master/Documentation/RelNotes/1.8.5.txt#L100) onwards, `@` can replace `HEAD`:
{{< highlight bash >}}
$ git reset --hard @~2
$ git rebase -i @~10
$ git diff @~2..@~3
{{</highlight>}}
And also in most scenarios `HEAD` can be left out completely, so you can say:
{{< highlight bash >}}
$ git reset -- @{2}
{{</highlight>}}
instead of:
{{< highlight bash >}}
$ git reset -- HEAD@{2}
{{</highlight>}}
It takes some getting used to, but it's definitely faster than typing `HEAD`.