diff options
| author | Franck Cuny <franckcuny@gmail.com> | 2016-06-19 13:56:53 -0700 |
|---|---|---|
| committer | Franck Cuny <franckcuny@gmail.com> | 2016-06-19 13:56:53 -0700 |
| commit | 5f7bbbd1d8bb0434140213ba560f3f2fc6c89ef0 (patch) | |
| tree | a0040112e26d4abb7b4375933ebddbe40c9e31be /_layouts | |
| parent | Slightly bigger font and use different font family (diff) | |
| download | lumberjaph-5f7bbbd1d8bb0434140213ba560f3f2fc6c89ef0.tar.gz | |
Simplification of the layout.
Nicer font for the text. Move the footer into the container div, so that
I don't have to maintain different ratio in different places.
The index page list all the articles, so I can remove the page /articles.
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 3 | ||||
| -rw-r--r-- | _layouts/page.html | 9 | ||||
| -rw-r--r-- | _layouts/post.html | 2 |
3 files changed, 12 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 8fb910f..5f80b43 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -9,10 +9,9 @@ <div id="container"> {{ content }} + {% include footer.html %} </div> - {% include footer.html %} - </body> </html> diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..b74fa96 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,9 @@ +--- +layout: default +--- + +<div>fcuny: <a href="/">home</a></div> + +<section> + <div id="entry"> {{ content }} </div> +</section> diff --git a/_layouts/post.html b/_layouts/post.html index 1504149..4532662 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,6 +2,8 @@ layout: default --- +<div>fcuny: <a href="/">home</a></div> + <header> <h1><a href="{{ page.url }}">{{ page.title }}</a></h1> </header> |
