Added logo variable to _config.yml which can be set to a path/url

Automatically replaces the title with a logo
This commit is contained in:
Silvio Giebl 2019-08-17 14:32:25 +02:00
parent 6a46a4797e
commit 132cecfea3
5 changed files with 25 additions and 1 deletions

View File

@ -17,6 +17,7 @@ title: Just the Docs
description: A Jekyll theme for documentation
baseurl: "/just-the-docs" # the subpath of your site, e.g. /blog
url: "https://pmarsceill.github.io" # the base hostname & protocol for your site, e.g. http://example.com
#logo: "/assets/images/just-the-docs.png"
permalink: pretty
exclude: ["node_modules/", "*.gemspec", "*.gem", "Gemfile", "Gemfile.lock", "package.json", "package-lock.json", "script/", "LICENSE.txt", "lib/", "bin/", "README.md", "Rakefile"]

View File

@ -1 +1,5 @@
{{ site.title }}
{% if site.logo %}
<div class="site-logo"></div>
{% else %}
{{ site.title }}
{% endif %}

View File

@ -153,6 +153,17 @@
}
}
@if variable-exists(logo) {
.site-logo {
width: 100%;
height: 100%;
background-image: url($logo);
background-position: left center;
background-repeat: no-repeat;
background-size: contain;
}
}
.menu-button {
appearance: none;
display: flex;

View File

@ -3,6 +3,10 @@
# only Main files contain this front matter, not partials.
---
{% if site.logo %}
$logo: "{{ site.logo | absolute_url }}";
{% endif %}
//
// Import external dependencies
//

View File

@ -3,6 +3,10 @@
# only Main files contain this front matter, not partials.
---
{% if site.logo %}
$logo: "{{ site.logo | absolute_url }}";
{% endif %}
//
// Import external dependencies
//