feat: adding initial helm charts and website structure
This commit is contained in:
+4
-2
@@ -21,11 +21,13 @@
|
||||
<title>{% block title %}{{ SITENAME }}{% endblock title %}{% if SITESUBTITLE %} - {{ SITESUBTITLE }}{% endif %}</title>
|
||||
|
||||
<!-- CSS -->
|
||||
<link href="//fonts.googleapis.com/" rel="dns-prefetch">
|
||||
<link href="//fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic|Abril+Fatface|PT+Sans:400,400italic,700&subset=latin,latin-ext" rel="stylesheet">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/poole.css" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/hyde.css" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/custom.css" />
|
||||
<link rel="stylesheet" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/syntax.css" />
|
||||
{% if FONT_AWESOME_JS %}
|
||||
<script src="{{ FONT_AWESOME_JS }}" crossorigin="anonymous"></script>
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block metadata %}
|
||||
<meta name="description" content="{% if article.description %}{{ article.description }}{% else %}{{ BIO }}{% endif %}">
|
||||
<meta property="og:description"
|
||||
content="{% if article.description %}{{ article.description }}{% else %}{{ BIO }}{% endif %}">
|
||||
<meta property="og:title" content="{{ article.title }}"/>
|
||||
<meta property="og:type" content="article"/>
|
||||
<meta property="og:url" content="{{ SITEURL }}/{{ article.url }}"/>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="post">
|
||||
<h1 class="post-title">{{ article.title }}</h1>
|
||||
<span class="post-date">{{ article.locale_date }}</span>
|
||||
THIS IS A PROJECT NOT AN ARTICLE!
|
||||
{{ article.content }}
|
||||
|
||||
{% if article.tags %}
|
||||
<span class="post-tags">
|
||||
Tags:
|
||||
<ul>
|
||||
{% for tag in article.tags %}
|
||||
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</span>
|
||||
{% endif %}
|
||||
|
||||
{% include 'fragments/disqus.html' %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
@@ -4,7 +4,7 @@
|
||||
|
||||
<h1>
|
||||
<a href="{{ SITEURL }}/">
|
||||
<img class="profile-picture" src="{{ SITEURL }}/images/{{ PROFILE_IMAGE }}">
|
||||
<!-- <img class="profile-picture" src="{{ SITEURL }}/images/{{ PROFILE_IMAGE }}">-->
|
||||
{{ SITENAME }}
|
||||
</a>
|
||||
</h1>
|
||||
|
||||
Reference in New Issue
Block a user