aboutsummaryrefslogtreecommitdiff
path: root/_includes/main.html
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2015-04-09 02:09:35 +0200
committerJakob Odersky <jodersky@gmail.com>2015-04-09 21:38:43 +0200
commitc389f93bdce02f446ce22dec7e93cbe7a00b472c (patch)
treefb35194d21017e45ac9163dd6b981c78f566c100 /_includes/main.html
parent5cb6b6a78bfeb92c01a1d91f134ac22978e64b09 (diff)
downloadwebsite-c389f93bdce02f446ce22dec7e93cbe7a00b472c.tar.gz
website-c389f93bdce02f446ce22dec7e93cbe7a00b472c.tar.bz2
website-c389f93bdce02f446ce22dec7e93cbe7a00b472c.zip
implement basic site using jekyll
Diffstat (limited to '_includes/main.html')
-rw-r--r--_includes/main.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/_includes/main.html b/_includes/main.html
new file mode 100644
index 0000000..ece6414
--- /dev/null
+++ b/_includes/main.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title>{{ page.title }}</title>
+
+ <link rel="stylesheet" href="/assets/lib/bootstrap/css/bootstrap.min.css">
+ <link rel="stylesheet" href="/assets/lib/fontawesome/css/font-awesome.min.css">
+
+</head>
+<body>
+
+ {{ content }}
+
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
+ <script src="/assets/lib/bootstrap/js/bootstrap.min.js"></script>
+</body>
+</html> \ No newline at end of file