This commit is contained in:
goingforbrooke 2024-07-22 14:51:14 -07:00 committed by GitHub
commit ecb2552afe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 53 additions and 15 deletions

View file

@ -6,10 +6,10 @@ title = "Zola Terminimal theme"
compile_sass = true compile_sass = true
# The theme supports feeds (RSS and ATOM) # The theme supports feeds (RSS and ATOM)
generate_feed = true generate_feeds = true
# Use `rss.xml` for RSS feeds and `atom.xml` for ATOM. # Use `rss.xml` for RSS feeds and `atom.xml` for ATOM.
feed_filename = "atom.xml" feed_filenames = ["atom.xml"]
# Optional: enable tags # Optional: enable tags
taxonomies = [ taxonomies = [

27
sass/font-exo2.scss Normal file
View file

@ -0,0 +1,27 @@
@font-face {
font-family: 'Exo2';
src: url('fonts/Exo2-Regular.woff2?sha=123456789') format('woff2'), url('fonts/Exo2-Regular.woff?sha=123456789') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Exo2';
src: url('fonts/Exo2-Bold.woff2?sha=123456789') format('woff2'), url('fonts/Exo2-Bold.woff?sha=123456789') format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Exo2';
src: url('fonts/Exo2-Italic.woff2?sha=123456789') format('woff2'), url('fonts/Exo2-Italic.woff?sha=123456789') format('woff');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Exo2';
src: url('fonts/Exo2-BoldItalic.woff2?sha=123456789') format('woff2'), url('fonts/Exo2-BoldItalic.woff?sha=123456789') format('woff');
font-weight: 700;
font-style: italic;
}

View file

@ -13,8 +13,8 @@ html {
body { body {
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family: Hack, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace; font-family: Exo2, Hack, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace;
font-size: 1rem; font-size: 1.25rem;
line-height: 1.54; line-height: 1.54;
background-color: var(--background); background-color: var(--background);
color: var(--color); color: var(--color);
@ -123,11 +123,11 @@ code {
background: var(--accent-alpha-20); background: var(--accent-alpha-20);
padding: 1px 6px; padding: 1px 6px;
margin: 0 2px; margin: 0 2px;
font-size: .95rem; font-size: 1rem;
} }
pre { pre {
font-family: Hack, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace; font-family: Exo2, Hack, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace;
padding: 20px; padding: 20px;
font-size: .95rem; font-size: .95rem;
overflow: auto; overflow: auto;

BIN
static/fonts/Exo2-Bold.woff Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -13,17 +13,25 @@
{%- block open_graph %}{{ head_macros::open_graph(config=config) }}{% endblock open_graph -%} {%- block open_graph %}{{ head_macros::open_graph(config=config) }}{% endblock open_graph -%}
{%- if config.generate_feed %} {%- if config.generate_feeds %}
{%- if "rss" in config.feed_filename %} {%- for feed in config.feed_filenames %}
{% set feed_type = 'rss+xml' %}
{%- else %} {%- if feed is containing('atom') %}
{% set feed_type = 'atom+xml' %} <link rel="alternate" type="application/atom+xml" title="{{ config.title }} Atom Feed" href="{{ get_url(path=feed, trailing_slash=false, lang=lang) | safe }}" />
{% endif -%} {%- endif %}
<link rel="alternate" type="application/{{ feed_type }}" title="RSS" href="{{ get_url(path=config.feed_filename) | safe }}">
{%- if feed is containing('rss') %}
<link rel="alternate" type="application/rss+xml" title="{{ config.title }} RSS Feed" href="{{ get_url(path=feed, trailing_slash=false, lang=lang) | safe }}" />
{%- endif %}
{%- endfor %}
{% endif -%} {% endif -%}
{%- if config.extra.favicon %} {%- if config.extra.favicon %}
<link rel="shortcut icon" type="{{ config.extra.favicon_mimetype | default(value="image/x-icon") | safe }}" href="{{ config.extra.favicon | safe }}"> <link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png"><!-- 180×180 -->
<link rel="manifest" href="/manifest.webmanifest">
{% endif -%} {% endif -%}
{%- block extra_head %} {%- block extra_head %}

View file

@ -19,7 +19,10 @@
{% endif -%} {% endif -%}
{% endif -%} {% endif -%}
{%- if config.extra.use_full_hack_font %} {%- if config.extra.use_full_hack_font == "exo2" %}
<link rel="stylesheet" href="{{ get_url(path="font-exo2.css", trailing_slash=false) | safe }}">
<link rel="stylesheet" href="{{ get_url(path="font-hack.css", trailing_slash=false) | safe }}">
{%- elif config.extra.use_full_hack_font %}
<link rel="stylesheet" href="{{ get_url(path="font-hack.css", trailing_slash=false) | safe }}"> <link rel="stylesheet" href="{{ get_url(path="font-hack.css", trailing_slash=false) | safe }}">
{% else %} {% else %}
<link rel="stylesheet" href="{{ get_url(path="font-hack-subset.css", trailing_slash=false) | safe }}"> <link rel="stylesheet" href="{{ get_url(path="font-hack-subset.css", trailing_slash=false) | safe }}">