diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-06 05:54:25 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-05-06 05:54:25 +0300 |
commit | b59d6a321f35f4f12266b056b7795f6f279295e7 (patch) | |
tree | a90256aea40f502c6e978e2e6bcea5da71317cf6 /_includes | |
download | egor-tensin.github.io-b59d6a321f35f4f12266b056b7795f6f279295e7.tar.gz egor-tensin.github.io-b59d6a321f35f4f12266b056b7795f6f279295e7.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | _includes/footer.html | 23 | ||||
-rw-r--r-- | _includes/header.html | 19 |
2 files changed, 42 insertions, 0 deletions
diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..b76fe73 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,23 @@ + </div> + </div> + <div class="block"> + <footer class="navbar-default"> + <div class="container"> + <div style="display: table; width: 100%;"> + <div style="display: table-row;"> + <div style="display: table-cell;"> + <div class="text-mutex"><small>This project is licensed under the terms of the MIT License. See <a href="https://github.com/egor-tensin/egor-tensin.github.io#licensing">Licensing</a> for details.</small></div> + </div> + <div style="display: table-cell;"> + <div class="text-right text-muted"><small>This page was last updated on: {{ site.time | date_to_long_string }}.</small></div> + </div> + </div> + </div> + </div> + </footer> + </div> + </div> + <script src="//code.jquery.com/jquery-1.11.0.js"></script> + <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.js"></script> + </body> +</html> diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..1ebc1bc --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,19 @@ +<!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.0"> + <title>{{ page.title }}</title> + <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.css"> + <link rel="stylesheet" href="/css/footer.css"> + <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> + <!--[if lt IE 9]> + <script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.js"></script> + <script src="//oss.maxcdn.com/respond/1.4.2/respond.js"></script> + <![endif]--> + </head> + <body> + <div class="wrapper"> + <div class="block push"> + <div class="container"> |