diff options
author | Frederick Yin <fkfd@macaw.me> | 2020-04-23 19:56:10 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@macaw.me> | 2020-04-23 19:56:10 +0800 |
commit | b8b525b213e6256513dce8ef20aa82889b4a63c2 (patch) | |
tree | 90af8a6c24329ae0396d25d0df0f2fefb21b6e52 /alabaster-lite/sidebars/about.html |
Initial commit
Custom alabaster theme
3 blogposts and 2 metaposts
Deployment script
Diffstat (limited to 'alabaster-lite/sidebars/about.html')
-rw-r--r-- | alabaster-lite/sidebars/about.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/alabaster-lite/sidebars/about.html b/alabaster-lite/sidebars/about.html new file mode 100644 index 0000000..674dab4 --- /dev/null +++ b/alabaster-lite/sidebars/about.html @@ -0,0 +1,16 @@ +{% if theme.logo %} + <p class="logo"> + <a href="{{nav.homepage.url|url}}"> + <img class="logo" src="{{base_url}}/{{theme.logo}}" title="{{theme.logo_title}}"> + </a> + </p> + {% if theme.logo_name %} + <h1 class="logo">{{ config.site_name }}</h1> + {% endif %} +{% else %} + <h1 class="logo"><a href="{{nav.homepage.url|url}}">{{ config.site_name }}</a></h1> +{% endif %} + +{% if config.site_description %} + <p class="blurb">{{ config.site_description }}</p> +{% endif %} |