aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/newbase.html
diff options
context:
space:
mode:
Diffstat (limited to 'crumbs/templates/newbase.html')
-rw-r--r--crumbs/templates/newbase.html81
1 files changed, 0 insertions, 81 deletions
diff --git a/crumbs/templates/newbase.html b/crumbs/templates/newbase.html
deleted file mode 100644
index 8242dc7..0000000
--- a/crumbs/templates/newbase.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<!DOCTYPE html>
-<html lang="{{ DEFAULT_LANG }}">
- <head>
-
- {% set SITEURL = 'http://localhost:8000' %}
-
- <!-- The head block contains all script and CSS loading -->
- {% block head %}
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="description" content="{% block description %}{% endblock description %}">
- <meta name="keywords" content="{% block keywords %}{% endblock keywords %}">
- <link rel="icon" href="{{ SITEURL }}/favicon.ico">
-
- <title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
-
- <!-- Stylesheets -->
- <link href="https://fonts.googleapis.com/css?family=Inconsolata|Quicksand:300,400|Roboto:300,400&amp;subset=cyrillic,cyrillic-ext" rel="stylesheet">
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
- <link href="{{ SITEURL }}/theme/css/bootstrap.min.css" rel="stylesheet">
- <link href="{{ SITEURL }}/theme/css/fonts.css" rel="stylesheet">
- <link href="{{ SITEURL }}/theme/css/nest.css" rel="stylesheet">
- <link href="{{ SITEURL }}/theme/css/pygment.css" rel="stylesheet">
- <link href="{{ SITEURL }}/theme/css/home.css" rel="stylesheet"> <!-- TODO: Rename -->
- <!-- /Stylesheets -->
-
- {% endblock head %}
- </head>
-
- <body>
- <!-- <div class="hacky_bg nav"> -->
-
- <!-- Header -->
- <div class="header-container gradient">
-
- <!-- Static nav bar and banner image and stuff -->
- <div class="container">
- <div class="header-nav">
- <div class="header-logo">
- <a class="pull-left" href="{{ SITEURL }}/"><img class="mr20" width=192px height=64px src="{{ SITEURL }}{{NEST_HEADER_LOGO or "/images/logo3.png" }}" alt="logo"></a>
- </div> <!-- header logo -->
-
- <div class="nav pull-right">
-
- {% for title, link in MENUITEMS %}
- {% if 'http://' in link or 'https://' in link %}
- <a class="nav" href="{{ link }}">{{ title }}</a>
- {% else %}
- <a class="nav" href="{{ SITEURL }}{{ link }}">{{ title }}</a>
- {% endif %}
- {% endfor %}
-
- {% if DISPLAY_PAGES_ON_MENU %}
- {% for pg in PAGES %}
- <a {% if pg == page %} class="active"{% endif %} href="{{ SITEURL }}/{{ pg.url }}">{{ pg.title }}</a>
- {% endfor %}
- {% endif %}
-
- </div> <!-- end nav pull-right -->
- </div> <!-- end header-nav -->
-
- <h1>Fun memory violations</h1>
-
- <p><b>Hi –</b> Welcome to my dusty internet hangout place.</p>
-
- <p>My name is <b>Katharina Fey</b> and I'm a software developer from Berlin. I like taking photos, writing stories and starting way too many personal projects.</p>
-
- <div class="icons">
- <a href="https://twitter.com/spacekookie"><h1 id="twitter"><i class="fa fa-twitter"></i> Twitter</h1></a>
- <a href="https://github.com/spacekookie"><h1 id="github"><i class="fa fa-github"></i> Github</h1></a>
- <a href="https://spacekookie.de/kookie.txt"><h1 id="keys"><i class="fa fa-key"></i> Keys</h1></a>
- </div>
-
-
- <p>To get in touch with me, you can also send an e-mail to <a href="mailto:kookie@spacekookie.de" id="email"><b>kookie@spacekookie.de</b></a></p>
- </div> <!-- end container -->
-
- <!-- </div> end hacky_bg -->
- </body>
-</html>