├── .gitignore
├── favicon.ico
├── preview.png
├── apple-touch-icon.png
├── README.md
├── _posts
└── 2015-06-15-sudo-jekyll.markdown
├── _config.yml
├── _layouts
├── post.html
└── default.html
├── index.html
├── LICENSE
├── feed.xml
└── style.css
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 | .jekyll-metadata
3 |
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oneohthree/sudo-jekyll/HEAD/favicon.ico
--------------------------------------------------------------------------------
/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oneohthree/sudo-jekyll/HEAD/preview.png
--------------------------------------------------------------------------------
/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/oneohthree/sudo-jekyll/HEAD/apple-touch-icon.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # sudo-jekyll
2 |
3 | Very minimal Jekyll theme for personal blogs
4 |
5 | 
--------------------------------------------------------------------------------
/_posts/2015-06-15-sudo-jekyll.markdown:
--------------------------------------------------------------------------------
1 | ---
2 | layout: post
3 | title: "sudo Jekyll theme"
4 | date: 2015-06-15 10:25:59
5 | categories: about
6 | ---
7 | sudo-jekyll is a very minimal Jekyll theme for personal blogs. This is a port made from sudo WordPress theme used at [sudo.cubava.cu](http://sudo.cubava.cu).
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | title: sudo
2 | description: "Very minimal theme for Jekyll aimed at personal blogging"
3 | # url: "http://oneohthree.github.io"
4 | url: "http://localhost:4000"
5 | twitter_username: unocerotres
6 | github_username: oneohthree
7 | language: en_US
8 | paginate: 10
9 | paginate_path: "/page/:num/"
10 | permalink: none
11 | markdown: kramdown
12 |
--------------------------------------------------------------------------------
/_layouts/post.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 | {{ page.title }}
8 |