Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vantagedesign/ace-documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--exampleSite/content/configuration/_index.md2
-rw-r--r--layouts/partials/header.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/exampleSite/content/configuration/_index.md b/exampleSite/content/configuration/_index.md
index 32d2410..244df9b 100644
--- a/exampleSite/content/configuration/_index.md
+++ b/exampleSite/content/configuration/_index.md
@@ -30,7 +30,7 @@ in the <code>config.toml</code> or the <code>frontmatter</code> (a page's markdo
An optional site logo can be specified:
{{< code >}}
-logo = /logo.svg
+site_logo = /logo.svg
{{< /code >}}
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 1aa7077..61e9479 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -3,7 +3,7 @@
<div>
<a class="navbar-brand" href="{{ .Site.BaseURL | relLangURL }}">
{{ with .Site.Params.site_logo }}
- <img src="{{ . }}" height="3rem" />
+ <img src="{{ . }}" />
{{ end }}
{{ .Site.Title }}
</a>