20 | 21 | {{ post.content | strip_html | strip_newlines | truncate: 90 }} 22 | 23 |
24 | 28 |├── CNAME ├── .gitignore ├── favicon.ico ├── images ├── image-2.png ├── krishna-minimal-jekyll-theme-menu-bar-1.png ├── krishna-minimal-jekyll-theme-menu-bar-2.png └── krishna-minimal-jekyll-theme-menu-bar-responsive.png ├── _posts ├── 2016-04-05-free-jekyll-theme.markdown ├── 2016-09-16-usage.md ├── 2016-09-18-krishna.md ├── 2016-09-17-welcome-to-jekyll.markdown ├── 2016-05-07-example.md └── 2016-05-07-documentation.md ├── _config.yml ├── README.md ├── _includes └── analytics.html ├── _layouts ├── post.html └── default.html ├── .github └── FUNDING.yml ├── _pages ├── archive.md ├── about.md └── contact.md ├── index.html ├── LICENSE ├── css ├── syntax-highlighter.scss └── main.scss └── _sass ├── _syntax-highlighting.scss └── _style.scss /CNAME: -------------------------------------------------------------------------------- 1 | krishna.webjeda.com -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharu725/krishna/HEAD/favicon.ico -------------------------------------------------------------------------------- /images/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharu725/krishna/HEAD/images/image-2.png -------------------------------------------------------------------------------- /images/krishna-minimal-jekyll-theme-menu-bar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharu725/krishna/HEAD/images/krishna-minimal-jekyll-theme-menu-bar-1.png -------------------------------------------------------------------------------- /images/krishna-minimal-jekyll-theme-menu-bar-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharu725/krishna/HEAD/images/krishna-minimal-jekyll-theme-menu-bar-2.png -------------------------------------------------------------------------------- /images/krishna-minimal-jekyll-theme-menu-bar-responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharu725/krishna/HEAD/images/krishna-minimal-jekyll-theme-menu-bar-responsive.png -------------------------------------------------------------------------------- /_posts/2016-04-05-free-jekyll-theme.markdown: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: "Use it for free!" 4 | categories: jekyll update 5 | icon: motorcycle 6 | --- 7 | 8 | The theme is free to use under MIT License. 9 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | ### your site title here 2 | 3 | title: Krishna 4 | 5 | #baseurl: /krishna 6 | sass: 7 | style: compressed 8 | 9 | 10 | # Tracker 11 | analytics: UA-83979019-1 12 | 13 | 14 | exclude: 15 | - README.md 16 | 17 | include: 18 | - _pages 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [Demo](http://webjeda.com/krishna) 2 | 3 | ## Installation 4 | * Fork the repository 5 | * Go to settings and set Github Pages source as master. 6 | * Your new site should be ready. 7 | 8 | For more themes visit - [https://jekyll-themes.com](https://jekyll-themes.com) -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 6 |
20 | 21 | {{ post.content | strip_html | strip_newlines | truncate: 90 }} 22 | 23 |
24 | 28 |