├── .gitignore
├── index.md
├── js
└── highlightjs
│ ├── languages
│ ├── plaintext.min.js
│ ├── powershell.min.js
│ └── tsql.min.js
│ ├── styles
│ ├── ssms.css
│ ├── github.css
│ └── default.css
│ └── highlight.min.js
├── archive.md
├── css
└── override.css
├── _posts
└── 2021-03-08-blog-post-title-from-file-name.md
├── _includes
├── navlinks.html
├── head.html
└── sharelinks.html
├── _layouts
└── post.html
└── _config.yml
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 |
--------------------------------------------------------------------------------
/index.md:
--------------------------------------------------------------------------------
1 | Here you can say lots of fun things about your site.
2 |
3 | Maybe say a some things about yourself.
4 |
5 | Or maybe what you plan to blog about.
6 |
--------------------------------------------------------------------------------
/js/highlightjs/languages/plaintext.min.js:
--------------------------------------------------------------------------------
1 | hljs.registerLanguage("plaintext",(()=>{"use strict";return t=>({
2 | name:"Plain text",aliases:["text","txt"],disableAutodetect:!0})})());
--------------------------------------------------------------------------------
/archive.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: Blog Archive
4 | ---
5 |
6 | {% for tag in site.tags %}
7 |
--------------------------------------------------------------------------------
/_layouts/post.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
6 |
7 |
19 |
20 |
21 | {% include sharelinks.html %}
22 |
23 |
24 |
25 | {{ content }}
26 | {% include navlinks.html %}
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | title: "My Blogs Name"
2 | author: "Default Author Name"
3 | description: "Some short description of your blog can go here." # This will show up in places like twitter, linkedin, etc, if you share your sites url as a post.
4 |
5 | # Email / Social media user names used by the minima theme:
6 | # All of these are optional and can be removed or commented out
7 | email: "example@mail.com"
8 | twitter_username: "twitteruser"
9 | github_username: "githubuser"
10 | linkedin_username: "linkedinuser"
11 | #facebook_username: username
12 | #flickr_username: username
13 | #instagram_username: username
14 | #pinterest_username: username
15 | #youtube_username: username
16 | #googleplus_username: +username
17 |
18 | #########################################################################################
19 | ######### Nothing below needs to be changed (unless you know what you're doing) #########
20 | #########################################################################################
21 | theme: "minima"
22 |
23 | rss: rss
24 |
25 | kramdown:
26 | syntax_highlighter_opts:
27 | disable: true
28 |
29 | plugins:
30 | - jekyll-feed
31 | - jekyll-sitemap
32 |
33 | titles_from_headings:
34 | strip_title: true
35 | collections: true
36 |
37 | defaults:
38 | - scope:
39 | path: ""
40 | type: post
41 | values:
42 | tags: Other
43 |
--------------------------------------------------------------------------------
/_includes/head.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |