Skip to content

Instantly share code, notes, and snippets.

@youroff
Last active December 28, 2015 00:18
Show Gist options
  • Save youroff/7411916 to your computer and use it in GitHub Desktop.
Save youroff/7411916 to your computer and use it in GitHub Desktop.
---
title: Home
published: true
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>
{{ page.title }} - {{ site.name }}
| {% if page.seo_title %}{{ page.seo_title }}{% else %}{{ site.seo_title }}{% endif %}
</title>
<meta name="description" content="{% if page.meta_description %}{{ page.meta_description }}{% else %}{{ site.meta_description }}{% endif %}">
<meta name="keywords" content="{{ site.meta_keywords }} {{ page.meta_keywords }}">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
{{ 'bootstrap.css' | stylesheet_tag }}
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<!-- Site Title -->
<div class="row">
<div class="col-md-10 col-md-offset-1 col-sm-10 col-sm-offset-1">
<h1>Wisdom for Wanderers</h1>
</div>
</div>
<!-- Site Navigation -->
<div class="row">
<div class="col-md-10 col-md-offset-1 col-sm-10 col-sm-offset-1">
<nav class="navbar navbar-default" role="navigation">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li {% if page.slug=="index" %}class="active"{% endif %}>
<a href="/">Home</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<!-- Page Content -->
<div class="row">
<div class="col-md-10 col-md-offset-1 col-sm-12 col-sm-offset-1">
<h2>{{ page.title }}</h2>
Coming Soon.
</div>
</div>
</div>
<!-- Javascripts -->
<script type='text/javascript' src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
{{ 'bootstrap.min.js' | javascript_tag }}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment