diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2018-01-18 13:57:10 +0000 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2018-01-18 13:59:57 +0000 |
commit | 1160805befad7d674d2cf8374baa2f3f4b12741d (patch) | |
tree | 960a9e66702d3e7ffe77877db3a2bb08937d9f07 /_layouts | |
parent | 6322361389b56fa072eb9bebaa39d0e7725d709a (diff) |
replace old blog layout with minimal-mistakes theme
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/default.html | 56 | ||||
-rw-r--r-- | _layouts/post.html | 27 |
2 files changed, 0 insertions, 83 deletions
diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index d9101e7..0000000 --- a/_layouts/default.html +++ /dev/null @@ -1,56 +0,0 @@ -<!DOCTYPE html> -<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> -<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> -<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> -<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]--> -<head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>{{ site.theme.name }} - {{ page.title }}</title> - <meta name="author" content="{{ site.theme.name }}" /> - <meta name="description" content="The blog of {{ site.theme.name }}" /> - <link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}" /> - - <link href="//fonts.googleapis.com/css?family=Open+Sans:600,800" rel="stylesheet" type="text/css"> - <link rel="shortcut icon" href="favicon.ico"> - <link rel="alternate" type="application/rss+xml" title="{{ site.theme.name }}" href="{{site.url}}/atom.xml" /> - - <link rel="stylesheet" href="css/font-awesome.css"> - <link rel="stylesheet" href="css/base.css"> - <link rel="stylesheet" href="css/skeleton.css"> - <link rel="stylesheet" href="css/screen.css"> - <link rel="stylesheet" href="css/layout.css"> - <link rel="stylesheet" href="css/peaksea.css"> -<!--[if IE 7]> - <link rel="stylesheet" href="css/font-awesome-ie7.min.css"> -<![endif]--> -</head> -<body> - <div class="container"> - <div class="four columns sidebar"> - {% include sidebar.html %} - </div> - - <div class="eleven columns content"> - - <!-- - <div style="margin-left:auto;margin-right:auto;width:100%;text-align:center;padding:0.2em;"> - <p style="font-weight:bold;">We're running a kickstarter campaign to get - <a href="https://cryptic.io">cryptic.io</a>, an encrypted online - storage service, off the ground. - <a href="http://www.kickstarter.com/projects/cryptic-io/cryptic-encrypted-online-storage">Click - here</a> to check it out and lend your support!</p> - </div> - --> - - {{ content }} - - <div class="footer"> - {% include footer.html %} - </div> - </div> - </div> - -{% include analytics.html %} -</body> -</html> diff --git a/_layouts/post.html b/_layouts/post.html deleted file mode 100644 index 0cb59ce..0000000 --- a/_layouts/post.html +++ /dev/null @@ -1,27 +0,0 @@ ---- -layout: default ---- - -<p class="meta"> - {{ page.date | date: "%B %d, %Y" }} - <a href="./"> - <i class="home icon-home"></i> - </a> -</p> - -<h1 class="title">{{ page.title }}</h1> - -<div id="post"> - {{ content }} -</div> - -<!-- <div id="related"> - <h3>Related Posts</h3> - <ul class="posts"> - {% for post in site.related_posts limit:3 %} - <li> - <span>{{ post.date | date_to_string }} »</span> <a href="{{ post.url }}">{{ post.title }}</a> - </li> - {% endfor %} - </ul> -</div> --> |