diff options
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/head.html | 3 | ||||
-rw-r--r-- | _includes/icon/home-round.svg | 1 | ||||
-rw-r--r-- | _includes/icon/search-round.svg | 1 | ||||
-rw-r--r-- | _includes/navbar.html | 14 | ||||
-rw-r--r-- | _includes/opengraph.html | 4 | ||||
-rw-r--r-- | _includes/tags.html | 6 | ||||
-rw-r--r-- | _includes/title.html | 5 |
7 files changed, 0 insertions, 34 deletions
diff --git a/_includes/head.html b/_includes/head.html deleted file mode 100644 index ff907a0..0000000 --- a/_includes/head.html +++ /dev/null @@ -1,3 +0,0 @@ -<meta charset="UTF-8"> -<meta name="viewport" content="width=device-width, initial-scale=1.0"> -<link rel="stylesheet" href="/style.css"> diff --git a/_includes/icon/home-round.svg b/_includes/icon/home-round.svg deleted file mode 100644 index 57039b4..0000000 --- a/_includes/icon/home-round.svg +++ /dev/null @@ -1 +0,0 @@ -<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M10 19v-5h4v5c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-7h1.7c.46 0 .68-.57.33-.87L12.67 3.6c-.38-.34-.96-.34-1.34 0l-8.36 7.53c-.34.3-.13.87.33.87H5v7c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z"></path></svg> diff --git a/_includes/icon/search-round.svg b/_includes/icon/search-round.svg deleted file mode 100644 index e79a75c..0000000 --- a/_includes/icon/search-round.svg +++ /dev/null @@ -1 +0,0 @@ -<svg viewBox="0 0 24 24" aria-hidden="true"><path d="M15.5 14h-.79l-.28-.27c1.2-1.4 1.82-3.31 1.48-5.34-.47-2.78-2.79-5-5.59-5.34-4.23-.52-7.79 3.04-7.27 7.27.34 2.8 2.56 5.12 5.34 5.59 2.03.34 3.94-.28 5.34-1.48l.27.28v.79l4.25 4.25c.41.41 1.08.41 1.49 0 .41-.41.41-1.08 0-1.49L15.5 14zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg> diff --git a/_includes/navbar.html b/_includes/navbar.html deleted file mode 100644 index 88092e7..0000000 --- a/_includes/navbar.html +++ /dev/null @@ -1,14 +0,0 @@ -<div class="globalLinks"> - <a href="/" class="indentLevel0 link navbarItem {% if include.page == "index" %}active{% endif %}"> - <div class="inner"> - <div class="icon">{% include icon/home-round.svg %}</div> - <span class="title">Home</span> - </div> - </a> - <a href="/search" class="indentLevel0 link navbarItem {% if include.page == "search" %}active{% endif %}"> - <div class="inner"> - <div class="icon">{% include icon/search-round.svg %}</div> - <span class="title">Search for posts</span> - </div> - </a> -</div> diff --git a/_includes/opengraph.html b/_includes/opengraph.html deleted file mode 100644 index 7cb9517..0000000 --- a/_includes/opengraph.html +++ /dev/null @@ -1,4 +0,0 @@ -<meta property='og:site_name' content='{{ page.date }}' /> -<meta property='og:title' content='{{ page.title }}' /> -<meta property='og:description' content='{{ page.subtitle }}' /> -<meta property="og:image" content='{{ page.cover }}' /> diff --git a/_includes/tags.html b/_includes/tags.html deleted file mode 100644 index 8fc9383..0000000 --- a/_includes/tags.html +++ /dev/null @@ -1,6 +0,0 @@ -<div class="tags"> - <span>Tags:</span> - {%- for tag in include.tags -%} - <a class="tag" href="/search?q={{ tag }}" style="--tag-hue: {{ tag | to_tag_color }};">{{ tag }}</a> - {%- endfor -%} -</div> diff --git a/_includes/title.html b/_includes/title.html deleted file mode 100644 index 08643ad..0000000 --- a/_includes/title.html +++ /dev/null @@ -1,5 +0,0 @@ -{% if page.id == "index" %} -<title>{{ site.title }}</title> -{% else %} -<title>{{ page.title }} - {{ site.title }}</title> -{% endif %} |