diff options
author | Justin Mayer <entroP@gmail.com> | 2016-12-31 13:05:36 -0800 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2016-12-31 13:05:36 -0800 |
commit | 879826b0e120fbe7f0e619faec13a9f35dce1ee3 (patch) | |
tree | 5efa45af89b15b754044b80b1e66aab082694711 /coding-now/templates/base.html | |
parent | ab70c6ca340f768fa29ea2dec8a29b4a07adef39 (diff) | |
download | pelican-themes-879826b0e120fbe7f0e619faec13a9f35dce1ee3.tar.gz |
Restore "coding-now" theme; remove spurious submodule
This reverts commit 20ddb53d20c3e56dacc7fb488746156749391211.
Diffstat (limited to 'coding-now/templates/base.html')
-rw-r--r-- | coding-now/templates/base.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/coding-now/templates/base.html b/coding-now/templates/base.html new file mode 100644 index 0000000..a20bf63 --- /dev/null +++ b/coding-now/templates/base.html @@ -0,0 +1,58 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>{% block title %} {{ SITENAME }}{% endblock %}</title> + + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <meta name="description" content="{{ SITEDESCRIPTION }}"> + <meta name="author" content="{{ AUTHOR }}"> + + <link href="{{ SITEURL }}/theme/css/fonts.css" rel="stylesheet" /> + + <link href="{{ SITEURL }}/theme/css/normalize.css" rel="stylesheet"/> + <link href="{{ SITEURL }}/theme/css/skeleton.css" rel="stylesheet"/> + <link href="{{ SITEURL }}/theme/css/github-prettify-theme.css" rel="stylesheet"/> + <link href="{{ SITEURL }}/theme/css/custom.css" rel="stylesheet"/> + <link href="{{ SITEURL }}/theme/css/pygement.css" rel="stylesheet"/> + + <script src="{{ SITEURL }}/theme/js/jquery.min.js"></script> + <script src="{{ SITEURL }}/theme/js/run_prettify.js"></script> + <script src="{{ SITEURL }}/theme/js/site.js"></script> +</head> +<body class="code-snippets-visible"> + +<div class="navbar-spacer"></div> +<nav class="navbar"> + <div class="container"> + <ul class="navbar-list"> + <li class="navbar-item"> + <a class="navbar-link" href="{{ SITEURL }}/"> + HOME + </a> + </li> + {% for page in pages|sort %} + <li class="navbar-item"> + <a class="navbar-link" href="{{ SITEURL }}/{{ page.url }}"> + {{ page.title }} + </a> + </li> + {% endfor %} + </ul> + <div class="navbar-link"> + <a href="{{ SITEURL }}/"><img src="{{ SITEURL }}/{{ SITEICON }}" class="site-icon"/></a> + </div> + </div> +</nav> +<div class="container"> + {% block container %} + {% endblock %} +</div> + +{% block footer %} +{% endblock %} +</body> +</html> |