aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html18
-rw-r--r--templates/index.html7
-rw-r--r--templates/resume.html1
3 files changed, 0 insertions, 26 deletions
diff --git a/templates/base.html b/templates/base.html
deleted file mode 100644
index 5537a36..0000000
--- a/templates/base.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!doctype html>
-<html xmlns="http://www.w3.org/1999/xhtml" lang="{{ lang }}" xml:lang="{{ lang }}">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
- <link rel="canonical" href="{{- current_url|safe -}}" />
- <link rel="stylesheet" href="/css/custom.css" />
-
- <meta name="author" content="{{- config.author -}}" />
- <meta name="description" content="{%- block description -%}{{- config.description -}}{%- endblock description -%}" />
-
- <title>{% block title %}{{- config.title -}}{% endblock title %}</title>
- </head>
-
- <body>
- <main>{% block content %}{% endblock content %}</main>
- </body>
-</html>
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index bb5a86c..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,7 +0,0 @@
-{% extends "base.html" %}
-
-{%- block content -%}
-
-{% if section.content %} {{ section.content | safe }}{% endif %}
-
-{%- endblock content -%}
diff --git a/templates/resume.html b/templates/resume.html
deleted file mode 100644
index 84449c5..0000000
--- a/templates/resume.html
+++ /dev/null
@@ -1 +0,0 @@
-{% extends "base.html" %} {% block content %} {{ section.content | safe }} {% endblock %}