-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #197 from RichardLitt/master
Bootstrap 3
- Loading branch information
Showing
17 changed files
with
519 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
|
||
<title>{{ page.title }}</title> | ||
{% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %} | ||
<meta name="author" content="{{ site.author.name }}"> | ||
|
||
<!-- Enable responsive viewport --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<!-- Bootstrap styles --> | ||
<link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<!-- Optional theme --> | ||
<link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet"> | ||
<!-- Sticky Footer --> | ||
<link href="{{ ASSET_PATH }}/bootstrap/css/bs-sticky-footer.css" rel="stylesheet"> | ||
|
||
<!-- Custom styles --> | ||
<link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css" media="all"> | ||
|
||
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
<!-- Fav and touch icons --> | ||
<!-- Update these with your own images | ||
<link rel="shortcut icon" href="images/favicon.ico"> | ||
<link rel="apple-touch-icon" href="images/apple-touch-icon.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> | ||
--> | ||
|
||
<!-- atom & rss feed --> | ||
<link href="{{ BASE_PATH }}{{ site.JB.atom_path }}" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> | ||
<link href="{{ BASE_PATH }}{{ site.JB.rss_path }}" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> | ||
|
||
</head> | ||
|
||
<body> | ||
<div id="wrap"> | ||
<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="#jb-navbar-collapse"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="{{ HOME_PATH }}">{{ site.title }}</a> | ||
</div> | ||
|
||
<!-- Collect the nav links, forms, and other content for toggling --> | ||
<div class="collapse navbar-collapse" id="jb-navbar-collapse"> | ||
<ul class="nav navbar-nav"> | ||
{% assign pages_list = site.pages %} | ||
{% assign group = 'navigation' %} | ||
{% include JB/pages_list %} | ||
</ul> | ||
<form class="navbar-form navbar-right" role="search"> | ||
<div class="form-group"> | ||
<input type="text" class="form-control" placeholder="Search"> | ||
</div> | ||
<button type="submit" class="btn btn-default">Submit</button> | ||
</form> | ||
</div><!-- /.navbar-collapse --> | ||
</nav> | ||
|
||
<div class="container"> | ||
{{ content }} | ||
</div> | ||
|
||
</div> | ||
|
||
<div id="footer"> | ||
<div class="container"> | ||
<p>© {{ site.time | date: '%Y' }} {{ site.author.name }} | ||
with help from <a href="http://jekyllbootstrap.com" target="_blank" title="The Definitive Jekyll Blogging Framework">Jekyll Bootstrap</a> | ||
and <a href="http://twitter.github.com/bootstrap/" target="_blank">Twitter Bootstrap</a> | ||
</p> | ||
</div> | ||
</div id="footer"> | ||
|
||
{% include JB/analytics %} | ||
|
||
|
||
<!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not supported in IE8) --> | ||
<!-- Placed at the end of the document so the pages load faster --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | ||
<script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<div class="page-header"> | ||
<h1>{{ page.title }} {% if page.tagline %} <small>{{ page.tagline }}</small>{% endif %}</h1> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-xs-12"> | ||
{{ content }} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<div class="page-header"> | ||
<h1>{{ page.title }} {% if page.tagline %}<small>{{page.tagline}}</small>{% endif %}</h1> | ||
</div> | ||
|
||
<div class="row post-full"> | ||
<div class="col-xs-12"> | ||
<div class="date"> | ||
<span>{{ page.date | date_to_long_string }}</span> | ||
</div> | ||
<div class="content"> | ||
{{ content }} | ||
</div> | ||
|
||
{% unless page.categories == empty %} | ||
<ul class="tag_box inline"> | ||
<li><i class="glyphicon-open"></i></li> | ||
{% assign categories_list = page.categories %} | ||
{% include JB/categories_list %} | ||
</ul> | ||
{% endunless %} | ||
|
||
{% unless page.tags == empty %} | ||
<ul class="tag_box inline"> | ||
<li><i class="glyphicon-tags"></i></li> | ||
{% assign tags_list = page.tags %} | ||
{% include JB/tags_list %} | ||
</ul> | ||
{% endunless %} | ||
|
||
<hr> | ||
<ul class="pagination"> | ||
{% if page.previous %} | ||
<li class="prev"><a href="{{ BASE_PATH }}{{ page.previous.url }}" title="{{ page.previous.title }}">« Previous</a></li> | ||
{% else %} | ||
<li class="prev disabled"><a>← Previous</a></li> | ||
{% endif %} | ||
<li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li> | ||
{% if page.next %} | ||
<li class="next"><a href="{{ BASE_PATH }}{{ page.next.url }}" title="{{ page.next.title }}">Next »</a></li> | ||
{% else %} | ||
<li class="next disabled"><a>Next →</a> | ||
{% endif %} | ||
</ul> | ||
<hr> | ||
{% include JB/comments %} | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
theme : | ||
name : bootstrap-3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
theme : | ||
name : twitter | ||
name : bootstrap-3 | ||
--- | ||
{% include JB/setup %} | ||
{% include themes/twitter/default.html %} | ||
{% include themes/bootstrap-3/default.html %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
assets/themes/bootstrap-3/bootstrap/css/bootstrap-theme.min.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.