|
1 | 1 | ---
|
2 | 2 | layout: post
|
3 |
| -title: Blogging with title |
| 3 | +title: Tech Stuff example |
4 | 4 | tags: [Test, Markdown]
|
5 | 5 | ---
|
6 | 6 |
|
@@ -95,3 +95,38 @@ class Module::Class
|
95 | 95 | end
|
96 | 96 | end
|
97 | 97 | ```
|
| 98 | + |
| 99 | +### YAML |
| 100 | + |
| 101 | +You can also render some yaml, like this `_config.yml`: |
| 102 | + |
| 103 | +```yml |
| 104 | + |
| 105 | +# Welcome to Jekyll! |
| 106 | +# |
| 107 | +# This config file is meant for settings that affect your whole blog, values |
| 108 | +# which you are expected to set up once and rarely edit after that. If you find |
| 109 | +# yourself editing this file very often, consider using Jekyll's data files |
| 110 | +# feature for the data you need to update frequently. |
| 111 | +# |
| 112 | +# This file, "_config.yml" is *NOT* reloaded automatically when you use |
| 113 | +# 'bundle exec jekyll serve'. If you change this file, please restart the server process. |
| 114 | + |
| 115 | +# Site settings |
| 116 | +# These are used to personalize your new site. If you look in the HTML files, |
| 117 | +# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. |
| 118 | +# You can create any custom variable you would like, and they will be accessible |
| 119 | +# in the templates via {{ site.myvariable }}. |
| 120 | + |
| 121 | +# SITE CONFIGURATION |
| 122 | +baseurl: "/Type-on-Strap" |
| 123 | +url: "https://sylhare.github.io" |
| 124 | + |
| 125 | +# THEME-SPECIFIC CONFIGURATION |
| 126 | +title: Type on Strap # site's title |
| 127 | +description: "A website with blog posts and pages" # used by search engines |
| 128 | +avatar: assets/img/triangle.png # Empty for no avatar in navbar |
| 129 | +favicon: assets/favicon.ico # Icon displayed in the tab |
| 130 | + |
| 131 | +remote_theme: sylhare/Type-on-Strap # If using as a remote_theme in github |
| 132 | +``` |
0 commit comments