summaryrefslogtreecommitdiff
path: root/_includes
diff options
context:
space:
mode:
authorAlexander Færøy <ahf@0x90.dk>2015-02-06 19:43:19 +0100
committerAlexander Færøy <ahf@0x90.dk>2015-02-06 19:43:19 +0100
commit32ce5e59db825e3842fedab0d89ddcda7cac4a1d (patch)
treec6e04415e1c6bfa975fe64d48bc81715ba6f2ba6 /_includes
parenta2fcb66a3c6238e24f513e1d35fdda3c8b449623 (diff)
downloadirssi.github.io-32ce5e59db825e3842fedab0d89ddcda7cac4a1d.zip
Add empty bootstrap template
Diffstat (limited to '_includes')
-rw-r--r--_includes/footer.html1
-rw-r--r--_includes/head.html11
-rw-r--r--_includes/header.html21
3 files changed, 33 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..59bbbd4
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1 @@
+<script src="/assets/js/bootstrap.min.js"></script>
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..b1c8ce5
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,11 @@
+<head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+
+ <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
+ <meta name="description" content="{{ site.description }}">
+
+ <link rel="stylesheet" href="/assets/css/bootstrap.min.css">
+ <link rel="stylesheet" href="/assets/css/style.css">
+</head>
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..8363b10
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,21 @@
+<nav class="navbar navbar-inverse navbar-fixed-top">
+ <div class="container">
+ <div class="navbar-header">
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
+ <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="#">
+ <img alt="Irssi Logo" class="navbar-irssi-logo" src="/assets/logo.png">
+ {{ site.title }}
+ </a>
+ </div>
+ <div id="navbar" class="collapse navbar-collapse">
+ <ul class="nav navbar-nav">
+ <li class="active"><a href="/">Home</a></li>
+ </ul>
+ </div>
+ </div>
+</nav>