diff options
| author | Franck Cuny <franckcuny@gmail.com> | 2014-12-04 20:02:23 -0800 |
|---|---|---|
| committer | Franck Cuny <franckcuny@gmail.com> | 2014-12-04 20:03:12 -0800 |
| commit | 9fe2ac2521294d97cc7273a8ba0044943896d50f (patch) | |
| tree | 2c0acb5d9a89f30c4a26339e61cb4038338adfcf /_layouts | |
| parent | update rsync command for publishing (diff) | |
| download | lumberjaph-9fe2ac2521294d97cc7273a8ba0044943896d50f.tar.gz | |
Update the theme.
Simpler and lighter theme. Not perfect yet, there's still more work to do on the
resume page and a few other things to fix (images in post, etc).
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 14 | ||||
| -rw-r--r-- | _layouts/post.html | 16 | ||||
| -rw-r--r-- | _layouts/static.html | 5 |
3 files changed, 17 insertions, 18 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 80fc4e7..c741dc9 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -23,21 +23,17 @@ <meta name="twitter:description" content="{{ page.summary }}"> <meta name="twitter:url" content="{{ page.url }}"> - <link rel="stylesheet" href="/static/css/screen.css" type="text/css"/> + <link rel="stylesheet" href="/static/css/style.css" type="text/css"/> <link rel="canonical" href="//lumberjaph.net{{ page.url | replace:'index.html','' }}" /> </head> -<body style> +<body> - {% include cover.html %} - - <div id="site"> {{ content }} </div> - - {% include footer.html %} + <div id="container"> + {{ content }} + </div> </body> - - </html> diff --git a/_layouts/post.html b/_layouts/post.html index 1801d73..0af49c3 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,14 +2,14 @@ layout: default --- -<article id="entry"> +<header> + <h1><a href="{{ page.url }}">{{ page.title }}</a></h1> +</header> - <header class="entry-title"> - <h1>{{ page.title }}</h1> - </header> +<section> - <section> - {{ content }} - </section> + <div id="entry"> {{ content }} </div> -</article> + {% include footer.html %} + +</section> diff --git a/_layouts/static.html b/_layouts/static.html index 5e71126..f3f047e 100644 --- a/_layouts/static.html +++ b/_layouts/static.html @@ -2,4 +2,7 @@ layout: default --- -{{ content }} +<section> + {{ content }} + {% include footer.html %} +</section> |
