whitespace, and author name meta-data
This commit is contained in:
parent
376c660a8e
commit
dae632b293
13
README.md
13
README.md
|
@ -19,6 +19,7 @@ Demo: [quirky-perlman-34d0da.netlify.com](https://quirky-perlman-34d0da.netlify.
|
|||
- [Title](#title)
|
||||
- [Sass](#Sass)
|
||||
- [Footer menu](#footer-menu)
|
||||
- [Author](#author)
|
||||
- [Netlify](#netlify)
|
||||
- [Original](#original)
|
||||
- [License](#license)
|
||||
|
@ -83,9 +84,19 @@ Create pages such as `$BASE_URL/about` by placing them in a subfolder of the con
|
|||
path = "about"
|
||||
```
|
||||
|
||||
### Author
|
||||
|
||||
To add author name to the head meta-data, set an `author` field in `extra`:
|
||||
|
||||
```toml
|
||||
[extra]
|
||||
|
||||
author = "Grant Green"
|
||||
```
|
||||
|
||||
### Netlify
|
||||
|
||||
Deployed on netlify? Let people know in the footer by setting `netlify` in `extra` as `true`.
|
||||
Deployed on netlify? Add a link in the footer by setting `netlify` in `extra` as `true`.
|
||||
|
||||
```toml
|
||||
[extra]
|
||||
|
|
|
@ -10,6 +10,7 @@ highlight_theme = "gruvbox-light"
|
|||
|
||||
[extra]
|
||||
|
||||
author = "El Carpet"
|
||||
netlify = true
|
||||
|
||||
footer_links = [
|
||||
|
|
|
@ -9,12 +9,11 @@
|
|||
|
||||
<title>{% block title %}{{ config.title }} · {{ config.description }}{% endblock title %}</title>
|
||||
<meta name="description" content="{% block description %}{{ config.description }}{% endblock description %}" />
|
||||
<!-- todo author name -->
|
||||
<meta name="author" content="">
|
||||
{% if config.extra.author %}<meta name="author" content="{{ config.extra.author }}" />{% endif %}
|
||||
<link rel="shortcut icon" href="{{ get_url(path="favicon.ico") | safe }}" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml") | safe }}">
|
||||
|
||||
{% set data = load_data(path="public/style.css", format="plain") %}
|
||||
{% set data = load_data(path="public/style.css", format="plain") -%}
|
||||
<style>{{ data | safe }}</style>
|
||||
|
||||
</head>
|
||||
|
@ -54,7 +53,7 @@
|
|||
</nav>
|
||||
<small>
|
||||
Built with <a href="https://www.getzola.org/">Zola</a>
|
||||
{% if config.extra.netlify %} & hosted on <a href="https://netlify.com">Netlify</a>{% endif %}
|
||||
{%- if config.extra.netlify %} & hosted on <a href="https://netlify.com">Netlify</a>{% endif -%}
|
||||
.<br />
|
||||
Maintained with ♥ for the web.
|
||||
</small>
|
||||
|
|
Loading…
Reference in a new issue