diff --git a/_config.yml b/_config.yml index d34af7c..a090670 100644 --- a/_config.yml +++ b/_config.yml @@ -21,9 +21,15 @@ url: "https://pmarsceill.github.io" # the base hostname & protocol for your site permalink: pretty exclude: ["node_modules/", "*.gemspec", "*.gem", "Gemfile", "Gemfile.lock", "package.json", "package-lock.json", "script/", "LICENSE.txt", "lib/", "bin/", "README.md", "Rakefile"] +# Set a path/url to a logo that will be displayed instead of the title +#logo: "/assets/images/just-the-docs.png" + # Enable or disable the site search search_enabled: true +# Set the search token separator for hyphenated-word search: +search_tokenizer_separator: /[\s/]+/ + # Enable or disable heading anchors heading_anchors: true diff --git a/_includes/title.html b/_includes/title.html index f6d5669..8bd3fa8 100644 --- a/_includes/title.html +++ b/_includes/title.html @@ -1 +1,5 @@ -{{ site.title }} \ No newline at end of file +{% if site.logo %} +
+{% else %} + {{ site.title }} +{% endif %} diff --git a/_layouts/default.html b/_layouts/default.html index d414234..b1d3c72 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -7,6 +7,12 @@ layout: table_wrappers {% include head.html %} +