12 Commits
1.0.2 ... 1.0.3

Author SHA1 Message Date
David Darnes
b26fc50728 Version bump 1.0.3 2019-03-04 20:22:05 +00:00
David Darnes
8c47866cee Merge pull request #21 from mtlynch/no-exec
Disabling execute permission on all files
2019-03-04 20:20:09 +00:00
David Darnes
565906028a Merge pull request #22 from mtlynch/default-title
Adding default title tag
2019-03-03 23:59:27 +00:00
David Darnes
4e1a24eef9 Merge pull request #23 from mtlynch/trailing-space
Removing trailing whitespace
2019-03-03 23:57:19 +00:00
Michael Lynch
0f6a493e45 Removing trailing whitespace
Fixing files that have trailing whitespace at end of lines.
2019-03-03 16:27:38 -05:00
Michael Lynch
060bc4149a Adding default title tag
Currently, if page.collectionpage and page.title are both unset, the page title is set to " - Whatever Blog Title". This is undesirable, so if neither variable is set, the title tag should just be "Whatever Blog Title".
2019-03-03 16:20:09 -05:00
Michael Lynch
863954c90e Disabling execute permission on all files
Many files in the repo have the UNIX executable permission bit set, which indicates to the OS that these are executable binaries. None of these files are executable, so they should not have the executable permission bit set.
2019-03-03 16:07:41 -05:00
David Darnes
8e9aa160e9 Revert change 2018-09-16 19:19:08 +01:00
David Darnes
01ba7dd16f Fix unless statement 2018-09-16 19:14:00 +01:00
David Darnes
3d7271aaa2 Revert layout back again 2018-04-28 18:43:22 +01:00
David Darnes
2704edd649 Revert layout 2018-04-28 18:42:38 +01:00
David Darnes
6aca382b6d Amend docs around customising, thanks @leonelgalan. Fixes #19 2018-04-28 18:15:09 +01:00
33 changed files with 8 additions and 6 deletions

0
404.md Executable file → Normal file
View File

0
CNAME Executable file → Normal file
View File

0
Gemfile Executable file → Normal file
View File

0
LICENSE Executable file → Normal file
View File

2
README.md Executable file → Normal file
View File

@@ -48,7 +48,7 @@ When using Garth as a theme means you can take advantage of the file overriding
To add your own styles copy the [`styles.scss`](https://github.com/daviddarnes/garth/blob/master/assets/styles.scss) into your own project with the same file path (`assets/styles.scss`). From there you can add your own styles, you can even optionally ignore the theme styles by removing the `@import "garth";` line.
If you're just looking to set your own colours copy the [`_colors.scss`](https://github.com/daviddarnes/garth/blob/master/_sass/_colors.scss) file into your project at the same file path (`_sass/_settings.scss`) and change variables however you wish. The settings are a mixture of custom variables and settings from [Sassline](https://medium.com/@jakegiltsoff/sassline-v2-0-e424b2881e7e) - follow the link to find out how to configure the typographic settings.
If you're just looking to set your own colours copy the [`_colors.scss`](https://github.com/daviddarnes/garth/blob/master/_sass/_colors.scss) and main theme styles file [`garth.scss`](https://github.com/daviddarnes/garth/blob/master/_sass/garth.scss) into your project at the same file path (`_sass/`) and change variables however you wish. The settings are a mixture of custom variables and settings from [Sassline](https://medium.com/@jakegiltsoff/sassline-v2-0-e424b2881e7e) - follow the link to find out how to configure the typographic settings.
## Site settings

0
_config.yml Executable file → Normal file
View File

0
_includes/post-list.html Executable file → Normal file
View File

0
_includes/post-meta.html Executable file → Normal file
View File

0
_includes/post-pagination.html Executable file → Normal file
View File

2
_includes/site-footer.html Executable file → Normal file
View File

@@ -1,5 +1,5 @@
<footer class="footer">
<div class="container">
<div class="container">
<div class="copyright typeset">
<small class="small">&copy; {{ site.title }} {{ site.time | date: '%Y' }}</small>
</div>

0
_includes/site-header.html Executable file → Normal file
View File

0
_includes/site-logo.html Executable file → Normal file
View File

0
_includes/site-nav.html Executable file → Normal file
View File

8
_layouts/default.html Executable file → Normal file
View File

@@ -5,18 +5,20 @@
{% if page.collectionpage %}
{% assign collectiondata = site.collections | where: "label", page.collectionpage | first %}
<title>{{ collectiondata.title }} - {{ site.title }}</title>
{% else %}
{% elsif page.title %}
<title>{{ page.title }} - {{ site.title }}</title>
{% else %}
<title>{{ site.title }}</title>
{% endif %}
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
{% if site.favicon %}
<link rel="shortcut icon" href="{{ site.favicon }}">
{% else %}
<link rel="shortcut icon" href="{{ site.logo }}">
{% endif %}
</head>
<body>

0
_layouts/home.html Executable file → Normal file
View File

0
_layouts/page.html Executable file → Normal file
View File

0
_layouts/post.html Executable file → Normal file
View File

0
_posts/2016-08-27-example-post-one.md Executable file → Normal file
View File

0
_posts/2016-08-28-example-post-two.md Executable file → Normal file
View File

0
_posts/2016-08-29-example-post-three.md Executable file → Normal file
View File

0
_sass/_colors.scss Executable file → Normal file
View File

0
_sass/_flex.scss Executable file → Normal file
View File

0
_sass/_normalize.scss Executable file → Normal file
View File

0
_sass/_sassline-base.scss Executable file → Normal file
View File

0
_sass/_syntax.scss Executable file → Normal file
View File

0
_sass/sassline-base/_mixins.scss Executable file → Normal file
View File

0
_sass/sassline-base/_modular-scale.scss Executable file → Normal file
View File

0
_sass/sassline-base/_reset.scss Executable file → Normal file
View File

0
_sass/sassline-base/_typography.scss Executable file → Normal file
View File

0
_sass/sassline-base/_variables.scss Executable file → Normal file
View File

0
assets/styles.scss Executable file → Normal file
View File

2
garth-jekyll-theme.gemspec Executable file → Normal file
View File

@@ -2,7 +2,7 @@
Gem::Specification.new do |spec|
spec.name = "garth-jekyll-theme"
spec.version = "1.0.2"
spec.version = "1.0.3"
spec.authors = ["David Darnes"]
spec.email = ["me@daviddarnes.com"]

0
index.html Executable file → Normal file
View File