mirror of
https://github.com/pawroman/zola-theme-terminimal.git
synced 2025-01-09 20:21:06 +01:00
Fix typos, change button icons to be sans-serif
This commit is contained in:
parent
8688b5b87f
commit
582749d5e7
|
@ -19,15 +19,15 @@ Many thanks for that outstanding original theme, Radek!
|
||||||
- Content has been centered (instead of left-aligned).
|
- Content has been centered (instead of left-aligned).
|
||||||
- The header stripes have been spaced out.
|
- The header stripes have been spaced out.
|
||||||
- Tweaks to pagination, especially on mobile (small screens).
|
- Tweaks to pagination, especially on mobile (small screens).
|
||||||
- The post title underline is now dashed instead of doubly-dotted.
|
- The post title underline is dashed instead of doubly-dotted.
|
||||||
- All links are underscored, as per
|
- All links are underlined, as per
|
||||||
[Brutalist Web Design Guidelines](https://www.brutalist-web.design/).
|
[Brutalist Web Design Guidelines](https://www.brutalist-web.design/).
|
||||||
- Tweaks to header font sizes.
|
- Tweaks to header font sizes.
|
||||||
- Minor footer tweaks.
|
- Minor footer tweaks.
|
||||||
|
|
||||||
- Absolutely **no JavaScript**.
|
- Absolutely **no JavaScript**.
|
||||||
- No JavaScript needed to pre-process anything.
|
- No JavaScript needed to pre-process anything.
|
||||||
Zola with it's Sass pre-processor is the only dependency.
|
Zola with its Sass pre-processor is the only dependency.
|
||||||
- There's no menu trigger.
|
- There's no menu trigger.
|
||||||
- Things load crazy fast, as it's all static content.
|
- Things load crazy fast, as it's all static content.
|
||||||
- Prism.js syntax highlighting is not supported (you can use
|
- Prism.js syntax highlighting is not supported (you can use
|
||||||
|
@ -68,7 +68,7 @@ $ git clone https://github.com/pawroman/zola-theme-terminimal.git themes/termini
|
||||||
Option B: also include it as a git submodule (it's better if you plan to use CI builders):
|
Option B: also include it as a git submodule (it's better if you plan to use CI builders):
|
||||||
|
|
||||||
```
|
```
|
||||||
$ git submodule add https://github.com/pawroman/zola-theme-terminimal.git themes/terminal
|
$ git submodule add https://github.com/pawroman/zola-theme-terminimal.git themes/terminimal
|
||||||
```
|
```
|
||||||
|
|
||||||
Then in your `config.toml` set:
|
Then in your `config.toml` set:
|
||||||
|
|
|
@ -74,4 +74,8 @@
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__icon {
|
||||||
|
font-family: sans-serif;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
{%- if config.extra.logo_text %}
|
{%- if config.extra.logo_text %}
|
||||||
{{ config.extra.logo_text }}
|
{{ config.extra.logo_text }}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
Terminimal theme
|
||||||
{% endif -%}
|
{% endif -%}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -5,7 +5,10 @@
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<!-- ︎ -- force text style - some devices render this as emoji -->
|
<!-- ︎ -- force text style - some devices render this as emoji -->
|
||||||
<a class="read-more button" href="{{ page.permalink }}">Read more ↩︎</a>
|
<a class="read-more button" href="{{ page.permalink }}">
|
||||||
|
<span class="button__text">Read more</span>
|
||||||
|
<span class="button__icon">↩︎</span>
|
||||||
|
</a>
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<div class="post-content">
|
<div class="post-content">
|
||||||
|
|
Loading…
Reference in a new issue