aboutsummaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-02-12 12:25:05 -0800
committerMark Otto <[email protected]>2013-02-12 12:25:05 -0800
commit8b9733b288a3daca0da04fe60e0b5a0ae8681362 (patch)
treeb3b84c413ec1e6c1282b01a2923372743948f4b9 /_layouts
parent5de8557398ec862ab94f48dc081865d8223de1cf (diff)
downloadbootstrap-8b9733b288a3daca0da04fe60e0b5a0ae8681362.tar.xz
bootstrap-8b9733b288a3daca0da04fe60e0b5a0ae8681362.zip
nuke what we don't need for jekyll
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/_default.html56
-rw-r--r--_layouts/post.html21
2 files changed, 0 insertions, 77 deletions
diff --git a/_layouts/_default.html b/_layouts/_default.html
deleted file mode 100644
index 1482f09e4..000000000
--- a/_layouts/_default.html
+++ /dev/null
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width; initial-scale=1.0, maximum-scale=1">
- <link href="/public/favicon.ico" rel="shortcut icon" type="image/x-icon">
- <link href="http://gmpg.org/xfn/11" rel="profile">
-
- <title>
- {% if page.title %}{{ page.title }} &middot; {% endif %}
- And Hyde, a Jekyll theme
- </title>
-
- <!-- CSS -->
- <link rel="stylesheet" href="/public/css/hyde.css" type="text/css">
- <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400italic,400,600,700|Abril+Fatface" type="text/css">
-
- {% if page.title %}
- <!-- Twitter Cards -->
- <meta name="twitter:card" content="summary">
- <meta name="twitter:creator" content="@mdo">
- <meta name="twitter:title" content="{{ page.title }}">
- <meta name="twitter:description" content="{{ page.summary }}">
- <meta name="twitter:url" content="http://markdotto.com{{ page.url }}">
- {% endif %}
-
- </head>
- <body>
-
- <header class="masthead">
- <div class="masthead-inner">
- <h1>Hyde</h1>
- <p>An elegant open source and mobile-first theme for <a href="http://jekyllrb.com" target="_blank">Jekyll</a>. Made by <a href="http://markdotto.com" target="_blank">@mdo</a>.</p>
-
- <div class="colophon">
- <ul class="colophon-links">
- <li>
- <a href="https://github.com/mdo/hyde/master/zipball">Download</a>
- </li>
- <li>
- <a href="https://github.com/mdo/hyde">GitHub project</a>
- </li>
- <li>Currently v1.0</li>
- </ul>
- <p>&copy; 2013. All rights reserved.</p>
- </div>
-
- </div>
- </header>
-
- <div class="content container">
- {{ content }}
- </div>
-
- </body>
-</html> \ No newline at end of file
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index e1816c0ff..000000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,21 +0,0 @@
----
-layout: default
----
-
-<div class="post">
- <h1>{{ page.title }}</h1>
- <span class="post-date">{{ page.date | date_to_string }}</span>
- {{ content }}
-</div>
-
-<div class="related">
- <h2>Related Posts</h2>
- <ul class="posts">
- {% for post in site.related_posts limit:3 %}
- <h3><a href="{{ post.url }}">
- {{ post.title }}
- <small>{{ post.date | date_to_string }}</small>
- </a></h3>
- {% endfor %}
- </ul>
-</div>