├── VERSION ├── .gitignore ├── assets ├── img │ ├── favicon.png │ ├── docker-clear.png │ ├── mkdocs-jekyll.png │ ├── discourse-forum.png │ └── macbook-preview.png ├── js │ ├── modernizr.74668098.js │ └── application.a59e2a89.js └── css │ └── palette.css ├── pages ├── forum.md ├── sitemap.xml ├── about.md ├── archive.md ├── news.md ├── feed.xml └── index.md ├── _includes ├── doc.html ├── alert.html ├── tags.html ├── google-analytics.html ├── quiz.html ├── embed │ └── discourse.html ├── quiz │ └── multiple-choice.html ├── headers.html ├── social.html ├── toc.html ├── scrolltop.html ├── editable.html ├── head.html ├── footer.html ├── sidebar.html └── navigation.html ├── _docs ├── subfolder │ └── example-page.md ├── extras │ ├── index.md │ └── example-quiz.md ├── example-page.md └── getting-started.md ├── _layouts ├── page.html ├── post.html └── default.html ├── .circleci ├── circle_urls.sh └── config.yml ├── _data ├── toc.yml └── quizzes │ └── example-quiz.yml ├── _posts ├── 2019-06-28-hello-world.md └── 2019-06-29-welcome.md ├── Gemfile ├── CHANGELOG.md ├── search └── search_index.json ├── LICENSE ├── README.md └── _config.yml /VERSION: -------------------------------------------------------------------------------- 1 | 0.0.16 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | Gemfile.lock 3 | -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/englercj/mkdocs-jekyll/master/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/img/docker-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/englercj/mkdocs-jekyll/master/assets/img/docker-clear.png -------------------------------------------------------------------------------- /assets/img/mkdocs-jekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/englercj/mkdocs-jekyll/master/assets/img/mkdocs-jekyll.png -------------------------------------------------------------------------------- /assets/img/discourse-forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/englercj/mkdocs-jekyll/master/assets/img/discourse-forum.png -------------------------------------------------------------------------------- /assets/img/macbook-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/englercj/mkdocs-jekyll/master/assets/img/macbook-preview.png -------------------------------------------------------------------------------- /pages/forum.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Discussion Forum 3 | permalink: /forum/ 4 | --- 5 | 6 | {% include embed/discourse.html %} 7 | -------------------------------------------------------------------------------- /_includes/doc.html: -------------------------------------------------------------------------------- 1 | {% if include.name %}{{ include.name }}{% else %}{{ include.path }}{% endif %} 2 | -------------------------------------------------------------------------------- /_includes/alert.html: -------------------------------------------------------------------------------- 1 |
{% if include.title %}{{ include.title }}{% else %}{{ include.type }}{% endif %}
3 |{{ include.content }}
4 |{% if include.item.question %}{{ include.item.question }}{% else %}Question {{ include.count }}{% endif %}
3 |{% for choice in include.item.items %}{% if choice.correct == true %}{% endif %}{{ forloop.index }}. {{ choice.choice }}{% if choice.correct == true %}{% endif %}
{% endfor %}
Subscribe with RSS to keep up with the latest news. 9 | For site changes, see the changelog kept with the code base.
10 | 11 | 12 | 13 | {% for post in site.posts limit:10 %} 14 |