├── .github └── FUNDING.yml ├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _includes ├── comments.html ├── main-loop-card.html ├── menu-header.html ├── meta-read-time.html ├── search-lunr.html ├── sidebar-featured.html ├── sidebar.html ├── tracking-footer.html └── tracking-header.html ├── _layouts ├── default.html ├── page-sidebar.html ├── page.html └── post.html ├── _pages ├── about.md ├── author-jane.html ├── author-sal.html ├── authors-list.html ├── buy-me-a-coffee.md ├── categories.html ├── contact.md ├── privacy-policy.md └── tags.html ├── _posts ├── 2019-01-18-charm-old-cities.md ├── 2019-01-18-customer-service.md ├── 2019-01-19-markup-example.md ├── 2019-01-20-quick-start-guide.md ├── 2019-01-21-is-intelligence-enough.md ├── 2019-01-22-never-stopped-worrying-never-loved-bomb.md ├── 2019-01-23-options-for-creating-new-site-with-jekyll.md ├── 2019-01-24-powerful-things-markdown-editor.md ├── 2019-01-25-press-and-education.md ├── 2019-01-26-red-riding.md ├── 2019-01-27-tree-of-codes.md ├── 2019-01-28-we-all-wait-for-summer.md ├── 2019-01-29-about-bundler.md ├── 2019-01-30-acumulated-experience.md ├── 2019-02-01-education.md ├── 2019-02-02-first-mass-produced.md ├── 2019-02-03-powerful-things-markdown-editor.md └── 2019-02-04-welcome-to-jekyll.markdown ├── assets ├── css │ ├── main.css │ └── theme.css ├── images │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ ├── avatar1.jpg │ ├── avatar2.jpg │ ├── demo1.jpg │ ├── favicon.ico │ ├── home.jpg │ ├── jekyll.svg │ └── screenshot.jpg └── js │ ├── bootstrap.js │ ├── lunr.js │ └── theme.js ├── docker-compose.yml └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ['wowthemesnet'] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | node_modules 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 18 | 19 |
Page not found :(
23 |The requested page could not be found.
24 |7 | {{ post.excerpt | strip_html | strip_newlines | truncate: 186}} 8 |
9 | 10 | In 11 | {% for category in post.categories %} 12 | {{ category }}, 13 | {% endfor %} 14 | 15 | 16 | 17 | {{ post.date | date: '%b %d, %Y' }} 18 | 19 |Hi! The website you are previewing is a demonstration for Mundana Jekyll theme, hosted on Github, made by Sal.
4 | 5 | Documentation 6 | 7 | Buy me a coffee -------------------------------------------------------------------------------- /_includes/tracking-footer.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/tracking-header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |11 | 12 | {% for category in page.categories %} 13 | {{ category | downcase }}, 14 | {% endfor %} 15 | 16 |
17 |31 | {{ latest_post.excerpt | strip_html | strip_newlines | truncate: 136 }} 32 |
33 |145 | {{ post.excerpt | strip_html | strip_newlines | truncate: 136 }} 146 |
147 | Read More 148 |