diff --git a/README.md b/README.md index 7447e25..2fa3782 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,10 @@ confine access, ...) like me then you can also do: 1. Create some local directory used to hold the installed gems. I use `GEM_HOME=~/.local/lib/gems` to mirror the root tree that would otherwise be used. -2. > `bundle install --path $GEM_HOME` -3. Invoke jekyll through `bundle` as well - > `bundle exec jekyll serve` - +2. Invoke `bundle install --path $GEM_HOME`. Note that in newer bundle versions + you will simply want to use once `bundle config set --local path $GEM_HOME` + instead of the `--path` argument. +3. Now Invoke jekyll through `bundle` as well + > `bundle exec jekyll serve` [GHGuide]: https://help.github.com/en/articles/setting-up-your-github-pages-site-locally-with-jekyll diff --git a/_layouts/default.html b/_layouts/default.html index 094c1c3..9c8a764 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -15,7 +15,10 @@
- View on GitHub +

{{ site.title | default: site.github.repository_name }}

{{ site.description | default: site.github.project_tagline }}

diff --git a/assets/css/style.scss b/assets/css/style.scss index 4861913..46ca895 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -22,6 +22,33 @@ vertical-align: text-bottom; } +#nav_banner { + display: block; + position: absolute; + top: 0; + right: 10px; + z-index: 10; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); +} + +#forkme { + display: block; + color: #fff; + padding: 10px 50px 10px 10px; + background: url("../images/blacktocat.png") #0090ff no-repeat 95% 50%; + font-weight: 700; +} + +#blog_banner { + display: block; + color: #fff; + padding: 10px 50px 10px 10px; + background: #0090ff; + font-weight: 700; + border-bottom-left-radius: 2px; + border-bottom-right-radius: 2px; +} + .post-info { text-align: right; font-weight: bold;