diff options
Diffstat (limited to '_layouts')
| -rw-r--r-- | _layouts/default.html | 41 | ||||
| -rw-r--r-- | _layouts/post.html | 4 | ||||
| -rw-r--r-- | _layouts/static.html | 12 |
3 files changed, 10 insertions, 47 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index c741dc9..8fb910f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,39 +1,18 @@ <!DOCTYPE html> -<html lang="en-US"> + <html lang="en-US"> -<head> - <meta charset="utf-8"/> + <head> + {% include header.html %} + </head> - <title>{{ page.title }}</title> + <body> - <meta name="description" content="{{ page.summary }}"> - <meta name="author" content="Franck Cuny"> - <meta name="copyright" content="© Copyright 2008 to Present"> + <div id="container"> + {{ content }} + </div> - <meta name="google-site-verification" content="zkHWYduyqP8GQs4IK3ltrU0pnVq4Eq8zpN91PUA34dI" /> + {% include footer.html %} - <meta name="viewport" content="width=device-width, initial-scale=1"> - - <meta name="twitter:account_id" content="14234966"> - <meta name="twitter:card" content="summary"> - <meta name="twitter:creator" content="@franckcuny"/> - <meta name="twitter:site" content="@franckcuny"/> - <meta name="twitter:title" content="{{ page.title }}"/> - <meta name="twitter:domain" content="lumberjaph.net"> - <meta name="twitter:description" content="{{ page.summary }}"> - <meta name="twitter:url" content="{{ page.url }}"> - - <link rel="stylesheet" href="/static/css/style.css" type="text/css"/> - - <link rel="canonical" href="//lumberjaph.net{{ page.url | replace:'index.html','' }}" /> -</head> - -<body> - - <div id="container"> - {{ content }} - </div> - -</body> + </body> </html> diff --git a/_layouts/post.html b/_layouts/post.html index 0af49c3..1504149 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -7,9 +7,5 @@ layout: default </header> <section> - <div id="entry"> {{ content }} </div> - - {% include footer.html %} - </section> diff --git a/_layouts/static.html b/_layouts/static.html deleted file mode 100644 index 0ecad98..0000000 --- a/_layouts/static.html +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: default ---- - -<header> - <h1><a href="{{page.url}}">{{page.title}}</a></h1> -</header> - -<section> - <div id="entry">{{ content }}</div> - {% include footer.html %} -</section> |
