-
-
Notifications
You must be signed in to change notification settings - Fork 916
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:daviddarnes/alembic
- Loading branch information
Showing
18 changed files
with
30 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,8 @@ | |
# 5. Collections | ||
# 6. Jekyll collections settings | ||
# 7. Site settings | ||
# 8. Site navigation | ||
# 8. Site favicons & manifest icons | ||
# 9. Site navigation | ||
|
||
# 1. Files excluded from Jekyll builds | ||
exclude: | ||
|
@@ -83,19 +84,26 @@ defaults: | |
encoding: utf-8 # Make sure the encoding is right | ||
lang: en-GB # Set the site language | ||
title: "Alembic" # Site name or title, also used in jekyll-seo-tag | ||
logo: "/assets/logo.svg" # Site logo, also used in jekyll-seo-tag | ||
logo: "/assets/logos/logo.svg" # Site logo, also used in jekyll-seo-tag | ||
description: "Alembic is a starting point for Jekyll projects. Rather than starting from scratch, this boilerplate is designed to get the ball rolling immediately" # Site description and default description, also used in jekyll-seo-tag | ||
url: "https://alembic.darn.es" # Site url, also used in jekyll-seo-tag | ||
baseurl: "" | ||
repo: "https://github.com/daviddarnes/alembic" | ||
email: "[email protected]" | ||
# disqus: "alembic-1" # Blog post comments, uncomment the option and set the site ID from your Disqus account | ||
avatarurl: "https://www.gravatar.com/avatar/6c0377abcf4da91cdd35dea4554b2a4c" # Uses avatars for favicons to get multple sites, eg Gravatar, Twitter, GitHub | ||
# google_analytics: '' | ||
# service_worker: false # Will turn off the service worker if set to false | ||
css_inline: true # Will insert all styles into a single <style> block in the <head> element and remove the style <link> reference | ||
|
||
# 8. Site navigation | ||
# 8. Site favicons & manifest icons | ||
favicons: # Favicons are also used in the manifest file. Syntax is 'size: path' | ||
16: '/assets/logos/[email protected]' | ||
32: '/assets/logos/[email protected]' | ||
96: '/assets/logos/[email protected]' | ||
512: '/assets/logos/[email protected]' | ||
1024: '/assets/logos/[email protected]' | ||
|
||
# 9. Site navigation | ||
navigation_header: | ||
Home: / | ||
Elements: /elements/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<link rel="icon" type="image/png" href="{{ site.avatarurl }}?s=16" sizes="16x16"> | ||
<link rel="icon" type="image/png" href="{{ site.avatarurl }}?s=32" sizes="32x32"> | ||
<link rel="icon" type="image/png" href="{{ site.avatarurl }}?s=96" sizes="96x96"> | ||
<link rel="shortcut icon" href="{{ site.avatarurl }}"> | ||
{% if site.favicons %} | ||
{% for icon in site.favicons %} | ||
<link rel="icon" type="image/png" href="{{ icon[1] }}" sizes="{{ icon[0] }}x{{ icon[0] }}"> | ||
{% endfor %} | ||
{% endif %} | ||
<link rel="shortcut icon" href="{{ site.avatarurl + '?s=32' | default: site.logo }}"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters