File tree Expand file tree Collapse file tree 6 files changed +39
-16
lines changed Expand file tree Collapse file tree 6 files changed +39
-16
lines changed Original file line number Diff line number Diff line change 1818# You can create any custom variable you would like, and they will be accessible
1919# in the templates via {{ site.myvariable }}.
2020
21- title : Fix - Documentation and Dev Diary
22- email : fix@arne-mertz.de
21+ title : Fix
22+
2323description : >- # this means to ignore newlines until "baseurl:"
24- You can find the dev diary <a href="https://arne-mertz.de/category/fix-dev-diary/>at my blog</a>
25- as well, among posts about C++ and maintainable code.
26- baseurl : " " # the subpath of your site, e.g. /blog
24+ Dev diary and associated documentation for the Fix toy project
25+ baseurl : " /fix" # the subpath of your site, e.g. /blog
2726url : " " # the base hostname & protocol for your site, e.g. http://example.com
27+
2828twitter_username : arne_mertz
2929github_username : arnemertz
3030
@@ -33,6 +33,14 @@ theme: minima
3333plugins :
3434 - jekyll-feed
3535
36+ header_pages :
37+ - _pages/frontpage.md
38+ - _pages/about.md
39+ - _pages/archive.md
40+
41+ include :
42+ - _pages
43+
3644# Exclude from processing.
3745# The following items will not be processed, by default.
3846# Any item listed under the `exclude:` key here will be automatically added to
@@ -52,3 +60,7 @@ plugins:
5260# - vendor/cache/
5361# - vendor/gems/
5462# - vendor/ruby/
63+ exclude :
64+ - .gitignore
65+ - Gemfile
66+ - Gemfile.lock
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1+ ---
2+ permalink : /archive
3+ layout : page
4+ title : Dev Diary Archive
5+ ---
6+
7+
8+ <ul >
9+ {% for post in site.posts %}
10+ <li >
11+ <a href =" .{{ post.url }} " >{{ post.title }}</a >
12+ </li >
13+ {% endfor %}
14+ </ul >
Original file line number Diff line number Diff line change 1+ ---
2+ permalink : /
3+ layout : home
4+ title : Home
5+ list_title : Dev diary
6+ ---
7+
8+ This is the site for some documentation regarding Fix, but mostly the dev diary.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments