inkstream 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (219) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +21 -0
  3. data/README.md +95 -0
  4. data/_config.yml +131 -0
  5. data/_includes/button.html +4 -0
  6. data/_includes/icon.html +1 -0
  7. data/_includes/nav-default.html +23 -0
  8. data/_includes/nav-header.html +25 -0
  9. data/_includes/post-list.html +59 -0
  10. data/_includes/post-meta.html +0 -0
  11. data/_includes/post-pagination.html +29 -0
  12. data/_includes/promo-section.html +12 -0
  13. data/_includes/site-before-end.html +1 -0
  14. data/_includes/site-before-start.html +1 -0
  15. data/_includes/site-favicons.html +12 -0
  16. data/_includes/site-fonts.html +13 -0
  17. data/_includes/site-footer-default.html +17 -0
  18. data/_includes/site-footer.html +23 -0
  19. data/_includes/site-header.html +66 -0
  20. data/_includes/site-styles.html +6 -0
  21. data/_layouts/blog.html +24 -0
  22. data/_layouts/default.html +62 -0
  23. data/_layouts/page.html +35 -0
  24. data/_layouts/post.html +201 -0
  25. data/assets/css/styles.css +11167 -0
  26. data/assets/favicon/android-chrome-192x192.png +0 -0
  27. data/assets/favicon/android-chrome-512x512.png +0 -0
  28. data/assets/favicon/apple-touch-icon.png +0 -0
  29. data/assets/favicon/browserconfig.xml +9 -0
  30. data/assets/favicon/favicon-16x16.png +0 -0
  31. data/assets/favicon/favicon-32x32.png +0 -0
  32. data/assets/favicon/favicon.ico +0 -0
  33. data/assets/favicon/favicon.svg +1 -0
  34. data/assets/favicon/mstile-150x150.png +0 -0
  35. data/assets/favicon/safari-pinned-tab.svg +88 -0
  36. data/assets/favicon/site.webmanifest +19 -0
  37. data/assets/images/about-me.jpg +0 -0
  38. data/assets/images/posts/default-post-img.jpg +0 -0
  39. data/assets/images/posts/text-syntax.jpg +0 -0
  40. data/assets/images/posts/welcome.jpg +0 -0
  41. data/assets/images/profile.png +0 -0
  42. data/assets/images/promo-banner.jpg +0 -0
  43. data/assets/js/blog.js +9 -0
  44. data/assets/js/demo/style-switcher.js +45 -0
  45. data/assets/logo/logo.jpg +0 -0
  46. data/assets/logo/logo.svg +1 -0
  47. data/assets/plugins/bootstrap/js/bootstrap.min.js +7 -0
  48. data/assets/plugins/jquery-3.3.1.min.js +2 -0
  49. data/assets/plugins/popper.min.js +5 -0
  50. data/assets/resume/resume.pdf +0 -0
  51. data/assets/scss/bootstrap/js/dist/alert.js +199 -0
  52. data/assets/scss/bootstrap/js/dist/alert.js.map +1 -0
  53. data/assets/scss/bootstrap/js/dist/button.js +187 -0
  54. data/assets/scss/bootstrap/js/dist/button.js.map +1 -0
  55. data/assets/scss/bootstrap/js/dist/carousel.js +668 -0
  56. data/assets/scss/bootstrap/js/dist/carousel.js.map +1 -0
  57. data/assets/scss/bootstrap/js/dist/collapse.js +428 -0
  58. data/assets/scss/bootstrap/js/dist/collapse.js.map +1 -0
  59. data/assets/scss/bootstrap/js/dist/dropdown.js +595 -0
  60. data/assets/scss/bootstrap/js/dist/dropdown.js.map +1 -0
  61. data/assets/scss/bootstrap/js/dist/index.js +23 -0
  62. data/assets/scss/bootstrap/js/dist/index.js.map +1 -0
  63. data/assets/scss/bootstrap/js/dist/modal.js +650 -0
  64. data/assets/scss/bootstrap/js/dist/modal.js.map +1 -0
  65. data/assets/scss/bootstrap/js/dist/popover.js +261 -0
  66. data/assets/scss/bootstrap/js/dist/popover.js.map +1 -0
  67. data/assets/scss/bootstrap/js/dist/scrollspy.js +375 -0
  68. data/assets/scss/bootstrap/js/dist/scrollspy.js.map +1 -0
  69. data/assets/scss/bootstrap/js/dist/tab.js +269 -0
  70. data/assets/scss/bootstrap/js/dist/tab.js.map +1 -0
  71. data/assets/scss/bootstrap/js/dist/toast.js +283 -0
  72. data/assets/scss/bootstrap/js/dist/toast.js.map +1 -0
  73. data/assets/scss/bootstrap/js/dist/tooltip.js +760 -0
  74. data/assets/scss/bootstrap/js/dist/tooltip.js.map +1 -0
  75. data/assets/scss/bootstrap/js/dist/util.js +172 -0
  76. data/assets/scss/bootstrap/js/dist/util.js.map +1 -0
  77. data/assets/scss/bootstrap/js/src/alert.js +179 -0
  78. data/assets/scss/bootstrap/js/src/button.js +171 -0
  79. data/assets/scss/bootstrap/js/src/carousel.js +606 -0
  80. data/assets/scss/bootstrap/js/src/collapse.js +402 -0
  81. data/assets/scss/bootstrap/js/src/dropdown.js +545 -0
  82. data/assets/scss/bootstrap/js/src/index.js +52 -0
  83. data/assets/scss/bootstrap/js/src/modal.js +594 -0
  84. data/assets/scss/bootstrap/js/src/popover.js +184 -0
  85. data/assets/scss/bootstrap/js/src/scrollspy.js +326 -0
  86. data/assets/scss/bootstrap/js/src/tab.js +260 -0
  87. data/assets/scss/bootstrap/js/src/toast.js +227 -0
  88. data/assets/scss/bootstrap/js/src/tooltip.js +752 -0
  89. data/assets/scss/bootstrap/js/src/util.js +177 -0
  90. data/assets/scss/bootstrap/js/tests/README.md +69 -0
  91. data/assets/scss/bootstrap/js/tests/browsers.js +82 -0
  92. data/assets/scss/bootstrap/js/tests/index.html +133 -0
  93. data/assets/scss/bootstrap/js/tests/integration/bundle.js +8 -0
  94. data/assets/scss/bootstrap/js/tests/integration/index.html +66 -0
  95. data/assets/scss/bootstrap/js/tests/integration/rollup.bundle.js +20 -0
  96. data/assets/scss/bootstrap/js/tests/karma.conf.js +143 -0
  97. data/assets/scss/bootstrap/js/tests/unit/.eslintrc.json +40 -0
  98. data/assets/scss/bootstrap/js/tests/unit/alert.js +123 -0
  99. data/assets/scss/bootstrap/js/tests/unit/button.js +222 -0
  100. data/assets/scss/bootstrap/js/tests/unit/carousel.js +1333 -0
  101. data/assets/scss/bootstrap/js/tests/unit/collapse.js +892 -0
  102. data/assets/scss/bootstrap/js/tests/unit/dropdown.js +1419 -0
  103. data/assets/scss/bootstrap/js/tests/unit/modal.js +815 -0
  104. data/assets/scss/bootstrap/js/tests/unit/popover.js +471 -0
  105. data/assets/scss/bootstrap/js/tests/unit/scrollspy.js +728 -0
  106. data/assets/scss/bootstrap/js/tests/unit/tab.js +518 -0
  107. data/assets/scss/bootstrap/js/tests/unit/toast.js +259 -0
  108. data/assets/scss/bootstrap/js/tests/unit/tooltip.js +1109 -0
  109. data/assets/scss/bootstrap/js/tests/unit/util.js +163 -0
  110. data/assets/scss/bootstrap/js/tests/visual/alert.html +58 -0
  111. data/assets/scss/bootstrap/js/tests/visual/button.html +51 -0
  112. data/assets/scss/bootstrap/js/tests/visual/carousel.html +66 -0
  113. data/assets/scss/bootstrap/js/tests/visual/collapse.html +78 -0
  114. data/assets/scss/bootstrap/js/tests/visual/dropdown.html +212 -0
  115. data/assets/scss/bootstrap/js/tests/visual/modal.html +268 -0
  116. data/assets/scss/bootstrap/js/tests/visual/popover.html +46 -0
  117. data/assets/scss/bootstrap/js/tests/visual/scrollspy.html +95 -0
  118. data/assets/scss/bootstrap/js/tests/visual/tab.html +234 -0
  119. data/assets/scss/bootstrap/js/tests/visual/toast.html +72 -0
  120. data/assets/scss/bootstrap/js/tests/visual/tooltip.html +106 -0
  121. data/assets/scss/bootstrap/scss/_alert.scss +51 -0
  122. data/assets/scss/bootstrap/scss/_badge.scss +54 -0
  123. data/assets/scss/bootstrap/scss/_breadcrumb.scss +41 -0
  124. data/assets/scss/bootstrap/scss/_button-group.scss +163 -0
  125. data/assets/scss/bootstrap/scss/_buttons.scss +137 -0
  126. data/assets/scss/bootstrap/scss/_card.scss +289 -0
  127. data/assets/scss/bootstrap/scss/_carousel.scss +197 -0
  128. data/assets/scss/bootstrap/scss/_close.scss +41 -0
  129. data/assets/scss/bootstrap/scss/_code.scss +48 -0
  130. data/assets/scss/bootstrap/scss/_custom-forms.scss +507 -0
  131. data/assets/scss/bootstrap/scss/_dropdown.scss +191 -0
  132. data/assets/scss/bootstrap/scss/_forms.scss +330 -0
  133. data/assets/scss/bootstrap/scss/_functions.scss +86 -0
  134. data/assets/scss/bootstrap/scss/_grid.scss +52 -0
  135. data/assets/scss/bootstrap/scss/_images.scss +42 -0
  136. data/assets/scss/bootstrap/scss/_input-group.scss +193 -0
  137. data/assets/scss/bootstrap/scss/_jumbotron.scss +17 -0
  138. data/assets/scss/bootstrap/scss/_list-group.scss +149 -0
  139. data/assets/scss/bootstrap/scss/_media.scss +8 -0
  140. data/assets/scss/bootstrap/scss/_mixins.scss +47 -0
  141. data/assets/scss/bootstrap/scss/_modal.scss +229 -0
  142. data/assets/scss/bootstrap/scss/_nav.scss +120 -0
  143. data/assets/scss/bootstrap/scss/_navbar.scss +294 -0
  144. data/assets/scss/bootstrap/scss/_pagination.scss +73 -0
  145. data/assets/scss/bootstrap/scss/_popover.scss +171 -0
  146. data/assets/scss/bootstrap/scss/_print.scss +141 -0
  147. data/assets/scss/bootstrap/scss/_progress.scss +43 -0
  148. data/assets/scss/bootstrap/scss/_reboot.scss +483 -0
  149. data/assets/scss/bootstrap/scss/_root.scss +19 -0
  150. data/assets/scss/bootstrap/scss/_spinners.scss +55 -0
  151. data/assets/scss/bootstrap/scss/_tables.scss +185 -0
  152. data/assets/scss/bootstrap/scss/_toasts.scss +44 -0
  153. data/assets/scss/bootstrap/scss/_tooltip.scss +115 -0
  154. data/assets/scss/bootstrap/scss/_transitions.scss +20 -0
  155. data/assets/scss/bootstrap/scss/_type.scss +125 -0
  156. data/assets/scss/bootstrap/scss/_utilities.scss +17 -0
  157. data/assets/scss/bootstrap/scss/_variables.scss +1123 -0
  158. data/assets/scss/bootstrap/scss/bootstrap-grid.scss +29 -0
  159. data/assets/scss/bootstrap/scss/bootstrap-reboot.scss +12 -0
  160. data/assets/scss/bootstrap/scss/bootstrap.scss +44 -0
  161. data/assets/scss/bootstrap/scss/mixins/_alert.scss +13 -0
  162. data/assets/scss/bootstrap/scss/mixins/_background-variant.scss +21 -0
  163. data/assets/scss/bootstrap/scss/mixins/_badge.scss +17 -0
  164. data/assets/scss/bootstrap/scss/mixins/_border-radius.scss +63 -0
  165. data/assets/scss/bootstrap/scss/mixins/_box-shadow.scss +20 -0
  166. data/assets/scss/bootstrap/scss/mixins/_breakpoints.scss +123 -0
  167. data/assets/scss/bootstrap/scss/mixins/_buttons.scss +107 -0
  168. data/assets/scss/bootstrap/scss/mixins/_caret.scss +62 -0
  169. data/assets/scss/bootstrap/scss/mixins/_clearfix.scss +7 -0
  170. data/assets/scss/bootstrap/scss/mixins/_deprecate.scss +10 -0
  171. data/assets/scss/bootstrap/scss/mixins/_float.scss +14 -0
  172. data/assets/scss/bootstrap/scss/mixins/_forms.scss +192 -0
  173. data/assets/scss/bootstrap/scss/mixins/_gradients.scss +45 -0
  174. data/assets/scss/bootstrap/scss/mixins/_grid-framework.scss +66 -0
  175. data/assets/scss/bootstrap/scss/mixins/_grid.scss +51 -0
  176. data/assets/scss/bootstrap/scss/mixins/_hover.scss +37 -0
  177. data/assets/scss/bootstrap/scss/mixins/_image.scss +36 -0
  178. data/assets/scss/bootstrap/scss/mixins/_list-group.scss +21 -0
  179. data/assets/scss/bootstrap/scss/mixins/_lists.scss +7 -0
  180. data/assets/scss/bootstrap/scss/mixins/_nav-divider.scss +10 -0
  181. data/assets/scss/bootstrap/scss/mixins/_pagination.scss +22 -0
  182. data/assets/scss/bootstrap/scss/mixins/_reset-text.scss +17 -0
  183. data/assets/scss/bootstrap/scss/mixins/_resize.scss +6 -0
  184. data/assets/scss/bootstrap/scss/mixins/_screen-reader.scss +33 -0
  185. data/assets/scss/bootstrap/scss/mixins/_size.scss +7 -0
  186. data/assets/scss/bootstrap/scss/mixins/_table-row.scss +39 -0
  187. data/assets/scss/bootstrap/scss/mixins/_text-emphasis.scss +16 -0
  188. data/assets/scss/bootstrap/scss/mixins/_text-hide.scss +11 -0
  189. data/assets/scss/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  190. data/assets/scss/bootstrap/scss/mixins/_transition.scss +16 -0
  191. data/assets/scss/bootstrap/scss/mixins/_visibility.scss +8 -0
  192. data/assets/scss/bootstrap/scss/utilities/_align.scss +8 -0
  193. data/assets/scss/bootstrap/scss/utilities/_background.scss +19 -0
  194. data/assets/scss/bootstrap/scss/utilities/_borders.scss +75 -0
  195. data/assets/scss/bootstrap/scss/utilities/_clearfix.scss +3 -0
  196. data/assets/scss/bootstrap/scss/utilities/_display.scss +26 -0
  197. data/assets/scss/bootstrap/scss/utilities/_embed.scss +39 -0
  198. data/assets/scss/bootstrap/scss/utilities/_flex.scss +51 -0
  199. data/assets/scss/bootstrap/scss/utilities/_float.scss +11 -0
  200. data/assets/scss/bootstrap/scss/utilities/_overflow.scss +5 -0
  201. data/assets/scss/bootstrap/scss/utilities/_position.scss +32 -0
  202. data/assets/scss/bootstrap/scss/utilities/_screenreaders.scss +11 -0
  203. data/assets/scss/bootstrap/scss/utilities/_shadows.scss +6 -0
  204. data/assets/scss/bootstrap/scss/utilities/_sizing.scss +20 -0
  205. data/assets/scss/bootstrap/scss/utilities/_spacing.scss +73 -0
  206. data/assets/scss/bootstrap/scss/utilities/_stretched-link.scss +19 -0
  207. data/assets/scss/bootstrap/scss/utilities/_text.scss +72 -0
  208. data/assets/scss/bootstrap/scss/utilities/_visibility.scss +13 -0
  209. data/assets/scss/bootstrap/scss/vendor/_rfs.scss +212 -0
  210. data/assets/scss/theme/_about.scss +28 -0
  211. data/assets/scss/theme/_base.scss +207 -0
  212. data/assets/scss/theme/_blog.scss +140 -0
  213. data/assets/scss/theme/_demo.scss +153 -0
  214. data/assets/scss/theme/_mixins.scss +34 -0
  215. data/assets/scss/theme/_responsive.scss +88 -0
  216. data/assets/scss/theme/styles.scss +14 -0
  217. data/assets/scss/theme-8.scss +41 -0
  218. data/assets/styles.scss +6 -0
  219. metadata +221 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7a3758db100c3f1a25473a45010f40f46c9410dfc65800ba9ca0862f092c68f1
4
- data.tar.gz: 2fd567af67c6d3eab1cf942ddee7c237252088584b3b50289db480b3a643ca22
3
+ metadata.gz: 6a9e843dcf7cefdbd637cda47a67c4665f4b94771b79785e25da1cb983236a66
4
+ data.tar.gz: e8a9942bf4eeaa5da89579d648fb76744ab3687c736941899a30589e6f1f0502
5
5
  SHA512:
6
- metadata.gz: f5ff2016e28c33ed6aa904369c81a4227fd98b149e08684bf6a3940819828354dc0b5642c47ba1bd99c91c76a827539b2c4779f0bef953e3ed2944cbe48fe038
7
- data.tar.gz: a37b5f5ef26534fb4e905cd66345aab0ceafe0637d0be900a804dfba8cc0439f511f889e50e3d1cab727f5662d0fb33be42375c77ffd0c4b6e875ca90b919dde
6
+ metadata.gz: e9a8effb5b55e8d4073f7de2bd5558102f6280eb841e92b388a26b41a1f30be8e4767dbfffdd6b3f470cd5969b77cf81a290ff6a7f2957d173086b3c8c35984a
7
+ data.tar.gz: cc75fedf222238643045c9f984edadc9cf8c2b564defbab569fd0a97470025d91410166afeb462a8c374c3f81255ee0e75373075bfd4d5cf19305b0456209aa9
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Mohd Irfan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,95 @@
1
+ # inkstream
2
+
3
+ Welcome to a brand new Jekyll theme!
4
+
5
+ **What Is Inkstream?**
6
+
7
+ Inkstream is a Jekyll theme for creating a personal blogging, embodying the fluidity of ink in the art of writing. It is designed to be a simple, clean, and responsive theme for your personal blog.
8
+
9
+ Preview the theme to see what it looks like, or even use it today. You can also view the theme's [live demo](https://inkstream.netlify.app/).
10
+
11
+ | Home | Blog |
12
+ |:---:|:---:|
13
+ | ![Inkstream theme preview](/demo/home.png) | ![Inkstream theme preview](/demo/blog.png) |
14
+
15
+ **Features**
16
+
17
+ - Clean and minimal design
18
+ - Responsive and mobile-friendly
19
+ - Syntax highlighting
20
+ - Pagination
21
+ - Atom feed
22
+ <!-- - SEO optimized
23
+ - Google Analytics
24
+ - Disqus comments -->
25
+ <!-- - Tested in all major browsers, including **IE and Edge**
26
+ - Built in **Service Worker** so it can work offline and on slow connections
27
+ - **Configurable colours** and typography in a single settings file
28
+ - Extensive set of **shortcodes** to include various elements; such as buttons, icons, figure images and more
29
+ - Solid **typographic framework** from [Sassline](https://sassline.com/)
30
+ - Configurable navigation via a single file
31
+ - Modular Jekyll components
32
+ - Post category support in the form of a single post index page grouped by category
33
+ - Built in live search using JavaScript
34
+ - **Contact form** built in using [Formspree](https://formspree.io/)
35
+ - Designed with **[Siteleaf](https://www.siteleaf.com/)** in mind
36
+ - Has 9 of the most popular networks as performant sharing buttons
37
+ - Has documentation -->
38
+
39
+ **Directory Structure**
40
+
41
+ ```plaintext
42
+ inkstream
43
+ ├── _includes
44
+ ├── _layouts
45
+ ├── _sass
46
+ ├── assets
47
+ └── _config.yml
48
+ ```
49
+
50
+ ## Installation
51
+
52
+ Add this line to your Jekyll site's `Gemfile`:
53
+
54
+ ```ruby
55
+ gem "inkstream"
56
+ ```
57
+
58
+ And add this line to your Jekyll site's `_config.yml`:
59
+
60
+ ```yaml
61
+ theme: inkstream
62
+ ```
63
+
64
+ And then execute:
65
+
66
+ ```bash
67
+ bundle
68
+ ```
69
+
70
+ Or install it yourself as:
71
+
72
+ ```bash
73
+ gem install inkstream
74
+ ```
75
+
76
+ ## Usage
77
+
78
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
79
+
80
+ ## Contributing
81
+
82
+ Bug reports and pull requests are welcome on GitHub at https://github.com/dev-mdirfan/inkstream. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
83
+
84
+ ## Development
85
+
86
+ To set up your environment to develop this theme, run `bundle install`.
87
+
88
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
89
+
90
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
91
+ To add a custom directory to your theme-gem, please edit the regexp in `inkstream.gemspec` accordingly.
92
+
93
+ ## License
94
+
95
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/_config.yml ADDED
@@ -0,0 +1,131 @@
1
+ ### Site Configuration ###
2
+
3
+ # 1. Files excluded from Jekyll builds
4
+ exclude:
5
+ - README.md
6
+ - LICENSE
7
+ - CNAME
8
+ - Gemfile
9
+ - Gemfile.lock
10
+ - inkstream.gemspec
11
+ - .jekyll-cache
12
+
13
+ # 2. Installed Gems
14
+ plugins:
15
+ - jekyll-paginate
16
+ - jekyll-seo-tag
17
+
18
+ # 3. Gem settings
19
+ paginate: 5 # jekyll-paginate > items per page
20
+ paginate_path: blog/:num # jekyll-paginate > blog page
21
+ author: MohdIrfan # jekyll-seo-tag > default author
22
+ twitter:
23
+ username: mohdirfan57 # jekyll-seo-tag > Owners twitter username
24
+ social: # jekyll-seo-tag > social overrides
25
+ name: Mohd Irfan # jekyll-seo-tag > real name
26
+ links: # jekyll-seo-tag > social aliases (sameAs)
27
+ - https://twitter.com/mohdirfan57 # Add your Twitter URL
28
+ - https://www.linkedin.com/in/mdirfan57 # Add your LinkedIn URL
29
+ - https://github.com/dev-mdirfan # Add your GitHub URL
30
+
31
+ # 4. Jekyll settings
32
+ # sass:
33
+ # style: compressed # Style compression
34
+ # permalink: pretty # Permalink style (/YYYY/MM/DD/page-name/)
35
+ # excerpt_separator: <!-- more --> # Marks end of excerpt in posts
36
+ # timezone: Europe/London # Timezone for blog posts and alike
37
+
38
+ # 5. Jekyll collections settings
39
+ collections:
40
+ posts:
41
+ title: Posts # Needed for Siteleaf
42
+ output: true
43
+ description: 'My thoughts and ideas' # The post list page content
44
+ pin: true # Pin the post to the top of the list
45
+ image: 'https://picsum.photos/2560/600?image=866'
46
+
47
+ # 6. Jekyll defaults
48
+ defaults:
49
+ - scope:
50
+ path: ''
51
+ values:
52
+ image: '/assets/images/posts/default-post-img.jpg' # Default image for sharing
53
+ - scope:
54
+ path: ''
55
+ type: 'posts'
56
+ values:
57
+ layout: post # Set the default layout for posts
58
+ - scope:
59
+ path: ''
60
+ type: 'pages'
61
+ values:
62
+ layout: page # Set the default layout for pages
63
+
64
+ # 7. Site settings
65
+ encoding: utf-8 # Make sure the encoding is right
66
+ lang: en # Set the site language
67
+ title: 'Inkstream' # Site name or title, also used in jekyll-seo-tag
68
+ logo: '/assets/logo/logo.jpg' # Site logo, also used in jekyll-seo-tag
69
+ description: 'Inkstream is a sleek and modern Jekyll theme tailored for bloggers seeking a seamless platform to express their ideas and stories. With its elegant design and intuitive features, Inkstream facilitates the continuous flow of content creation, empowering users to share their thoughts effortlessly.' # Site description and default description, also used in jekyll-seo-tag
70
+ url: 'https://inkstream.netlify.app' # Site url, also used in jekyll-seo-tag
71
+ baseurl: ''
72
+ repo: 'https://github.com/dev-mdirfan/inkstream' # Site repository, also used in jekyll-seo-tag
73
+ email: 'mdirfan5702@gmail.com'
74
+ # short_name: "Al" # The web application short name, defaults to the site title
75
+ css_inline: false # Will insert all styles into a single <style> block in the <head> element and remove the style <link> reference
76
+
77
+ # 8. Site favicons & manifest icons
78
+ favicons: # Favicons are also used in the manifest file. Syntax is 'size: path'
79
+ '16': '/assets/favicon/favicon-16x16.png'
80
+ '32': '/assets/favicon/favicon-32x32.png'
81
+ '150': '/assets/favicon/mstile-150x150.png'
82
+ '180': '/assets/favicon/apple-touch-icon.png'
83
+ '192': '/assets/favicon/android-chrome-192x192.png'
84
+ '512': '/assets/favicon/android-chrome-512x512.png'
85
+ webmanifest: '/assets/favicon/site.webmanifest'
86
+ safari: '/assets/favicon/safari-pinned-tab.svg'
87
+
88
+ # 9. Site navigation
89
+ navigation_header:
90
+ - title: Home
91
+ url: /
92
+ icon: home
93
+ - title: Blog
94
+ url: /blog/
95
+ icon: blog
96
+ - title: About Me
97
+ url: /about/
98
+ icon: user
99
+
100
+ navigation_footer:
101
+ - title: Mohd Irfan
102
+ url: https://github.com/dev-mdirfan/
103
+
104
+ # 10. Your Personal Info (Social links - Appears in sidebar)
105
+ author:
106
+ name: Sarah Parker # Your name (required)
107
+ bio: 'A passionate web developer and designer.' # Short bio or description, You can also provide a link to the about page. (required)
108
+ profession: 'Web Developer' # Your profession (optional)
109
+ location: 'India' # Your location (optional)
110
+ email: your@gmail.com # Your email address (optional)
111
+ social_links: # Set the urls then uncomment and comment out as desired
112
+ Twitter: https://twitter.com/mohdirfan57
113
+ LinkedIn: https://www.linkedin.com/in/mdirfan57
114
+ GitHub: https://github.com/dev-mdirfan
115
+ Stackoverflow: https://stackoverflow.com/users/13520260/mohd-irfan
116
+ Codepen: https://codepen.io/mohdirfan57
117
+ download_resume: '/assets/resume/resume.pdf' # Add the path to your resume
118
+ # sharing_links: # Appear at the bottom of single blog posts, add as desired. The value can be 'true' or the desired button colour
119
+ # Twitter: '#0d94e7'
120
+ # facebook: '#3B5998'
121
+ # Email: true
122
+
123
+ # # Load custom fonts from fonts.google.com etc
124
+ # #
125
+ # # TIP: Try to keep the number of urls as low to reduce the performance cost
126
+ # # If multiple fonts can be requested in a single url opt for this
127
+ # fonts:
128
+ # preconnect_urls:
129
+ # - https://fonts.gstatic.com
130
+ # font_urls:
131
+ # - https://use.fontawesome.com/releases/v5.7.1/js/all.js
@@ -0,0 +1,4 @@
1
+ <a href="{{ include.link | default: '#' }}" {% if include.color %} class="btn-{{ include.color }} btn-sm" {% else %}
2
+ class="btn-primary btn-sm" {% endif %}>
3
+ {{ include.text | default: "Button" }} {% if include.icon %}&nbsp;{% include icon.html name=include.icon %}{% endif
4
+ %}</a>
@@ -0,0 +1 @@
1
+ <i class="fab fa-{{ include.name }} fa-fw"></i>
@@ -0,0 +1,23 @@
1
+ <nav class="nav">
2
+ <ul class="list list--nav">
3
+ {% for item in site.html_pages %}
4
+ {% unless item.title == false or item.url contains "/page" or item.url contains "/404.html" %}
5
+ <li class="item item--nav{% if item.url == page.url %} item--current{% endif %}">
6
+
7
+ {% if item.url contains '://' %}
8
+ {% assign url = item.url %}
9
+ {% else %}
10
+ {% assign url = item.url | relative_url %}
11
+ {% endif %}
12
+
13
+ {% if item.collectionpage %}
14
+ {% assign collectiondata = site.collections | where: "label", item.collectionpage | first %}
15
+ <a href="{{ url }}">{{ collectiondata.title }}</a>
16
+ {% else %}
17
+ <a href="{{ url }}">{{ item.title }}</a>
18
+ {% endif %}
19
+ </li>
20
+ {% endunless %}
21
+ {% endfor %}
22
+ </ul>
23
+ </nav>
@@ -0,0 +1,25 @@
1
+ {% if site.navigation_header %}
2
+ {% assign nav = site.navigation_header %}
3
+ <nav>
4
+ <ul class="navbar-nav flex-column text-left">
5
+ {% for item in nav %}
6
+ {% if item.url contains '://' %}
7
+ {% assign url = item.url %}
8
+ {% else %}
9
+ {% assign url = item.url | relative_url %}
10
+ {% endif %}
11
+ {% assign icon = item.icon %}
12
+ <li class="nav-item {% if item.url == page.url %} active {% endif %}">
13
+ <a class="nav-link" href="{{ url }}"><i class="fas fa-{{ icon }} fa-fw mr-2"></i>
14
+ {{ item.title }}
15
+ {% if item.url == page.url %}
16
+ <span class="sr-only">(current)</span>
17
+ {% endif %}
18
+ </a>
19
+ </li>
20
+ {% endfor %}
21
+ </ul>
22
+ </nav>
23
+ {% else %}
24
+ {% include nav-default.html %}
25
+ {% endif %}
@@ -0,0 +1,59 @@
1
+ {% if paginator.posts %}
2
+ {% for page in paginator.posts %}
3
+ {% capture words %}
4
+ {{ page.content | number_of_words }}
5
+ {% endcapture %}
6
+ <div class="card shadow-sm my-4">
7
+ <div class="d-flex justify-content-between">
8
+ <img class="card-img-top" src="{{ page.image | relative_url }}" alt="{{ page.title }}"
9
+ style="width: 250px; object-fit: cover;">
10
+ <div class="card-body">
11
+ <h3 class="card-title">
12
+ <a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a>
13
+ </h3>
14
+ <p class="card-text">{{ page.excerpt | markdownify | truncatewords: 42 }}</p>
15
+ <a href="{{ site.baseurl }}{{ page.url }}" class="btn btn-primary">Read more &rarr;</a>
16
+ </div>
17
+ </div>
18
+
19
+ <div class="card-footer text-muted d-flex justify-content-between">
20
+ <span class="date">Published on {{ page.date | date: "%b %-d, %Y" }}</span>
21
+ <span class="comment"><a href="#">4 comments</a></span>
22
+ <span class="time align-content-end">
23
+ <i class="fas fa-clock fa-fw mr-1"></i>{{ words | divided_by: 180 | append: ' min read' }} &bull; {{ words
24
+ }}
25
+ words
26
+ </span>
27
+ </div>
28
+ </div>
29
+ {% endfor %}
30
+ {% include post-pagination.html %}
31
+ {% else %}
32
+ {% for page in site.posts %}
33
+ {% capture words %}
34
+ {{ page.content | number_of_words }}
35
+ {% endcapture %}
36
+ <div class="card shadow-sm my-4">
37
+ <div class="d-flex justify-content-between">
38
+ <img class="card-img-top" src="{{ page.image | relative_url }}" alt="{{ page.title }}"
39
+ style="width: 250px; object-fit: cover;">
40
+ <div class="card-body">
41
+ <h3 class="card-title">
42
+ <a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a>
43
+ </h3>
44
+ <p class="card-text">{{ page.excerpt | markdownify | truncatewords: 42 }}</p>
45
+ <a href="{{ site.baseurl }}{{ page.url }}" class="btn btn-primary">Read more &rarr;</a>
46
+ </div>
47
+ </div>
48
+ <div class="card-footer text-muted d-flex justify-content-between">
49
+ <span class="date">Published on {{ page.date | date: "%b %-d, %Y" }}</span>
50
+ <span class="comment"><a href="#">4 comments</a></span>
51
+ <span class="time align-content-end">
52
+ <i class="fas fa-clock fa-fw mr-1"></i>{{ words | divided_by: 180 | append: ' min read' }} &bull; {{ words
53
+ }}
54
+ words
55
+ </span>
56
+ </div>
57
+ </div>
58
+ {% endfor %}
59
+ {% endif %}
File without changes
@@ -0,0 +1,29 @@
1
+ <nav class="blog-nav nav nav-justified my-5">
2
+ {% if paginator.total_pages > 1 %}
3
+ {% if paginator.previous_page %}
4
+ <a class="nav-link-prev nav-item nav-link rounded-left rounded-right mx-2"
5
+ href="{{ site.baseurl }}{{ paginator.previous_page_path }}">Previous Page ({{ paginator.previous_page }})
6
+ <i class="arrow-prev fas fa-long-arrow-alt-left"></i>
7
+ </a>
8
+ {% else %}
9
+ <span class="nav-link-prev nav-item nav-link rounded-left rounded-right mx-2"
10
+ style="background-color: slategrey;">Previous Page
11
+ <i class="arrow-prev fas fa-long-arrow-alt-left"></i>
12
+ </span>
13
+ {% endif %}
14
+
15
+
16
+
17
+ {% if paginator.next_page %}
18
+ <a class="nav-link-next nav-item nav-link rounded-left rounded-right mx-2"
19
+ href="{{ site.baseurl }}{{ paginator.next_page_path }}">Next Page ({{ paginator.next_page }})
20
+ <i class="arrow-next fas fa-long-arrow-alt-right"></i>
21
+ </a>
22
+ {% else %}
23
+ <span class="nav-link-next nav-item nav-link rounded-left rounded-right mx-2" style="background-color: slategrey;">
24
+ Next Page
25
+ <i class="arrow-next fas fa-long-arrow-alt-right"></i>
26
+ </span>
27
+ {% endif %}
28
+ {% endif %}
29
+ </nav>
@@ -0,0 +1,12 @@
1
+ <section class="promo-section theme-bg-light py-5 text-center">
2
+ <div class="container">
3
+ <h2 class="title">Promo Section Heading</h2>
4
+ <p>You can use this section to promote your side projects etc. Lorem ipsum dolor sit amet, consectetuer
5
+ adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. </p>
6
+ <figure class="promo-figure">
7
+ <a href="https://made4dev.com" target="_blank"><img class="img-fluid"
8
+ src="assets/images/promo-banner.jpg" alt="image"></a>
9
+ </figure>
10
+ </div><!--//container-->
11
+ </section>
12
+ <!-- Promo Section-->
@@ -0,0 +1 @@
1
+ <!-- Overwrite this file with code you want before the closing body tag -->
@@ -0,0 +1 @@
1
+ <!-- Overwrite this file with code you want before the closing head tag -->
@@ -0,0 +1,12 @@
1
+ {% if site.favicons %}
2
+ {% assign icon = site.favicons %}
3
+ <link rel="apple-touch-icon" sizes="180x180" href="{{ icon.180 | relative_url }}">
4
+ <link rel="icon" type="image/png" sizes="32x32" href="{{ icon.32 | relative_url }}">
5
+ <link rel="icon" type="image/png" sizes="16x16" href="{{ icon.16 | relative_url }}">
6
+ <link rel="manifest" href="{{ icon.webmanifest | relative_url }}">
7
+ <link rel="mask-icon" href="{{ icon.safari | relative_url }}" color="#5bbad5">
8
+ <meta name="msapplication-TileColor" content="#da532c">
9
+ <meta name="theme-color" content="#ffffff">
10
+ {% else %}
11
+ <link rel="shortcut icon" href="{{ site.avatarurl + '?s=32' | default: site.logo | relative_url }}">
12
+ {% endif %}
@@ -0,0 +1,13 @@
1
+ {% if site.fonts.font_urls %}
2
+ {% for font in site.fonts.font_urls %}
3
+ <script defer src="{{ font }}"
4
+ integrity="sha384-eVEQC9zshBn0rFj4+TU78eNA19HMNigMviK/PU/FFjLXqa/GKPgX58rvt5Z8PLs7" crossorigin="anonymous">
5
+ </script>
6
+ {% endfor %}
7
+ <noscript>
8
+ {% for font in site.fonts.font_urls %}
9
+ <link href="{{ font }}" rel="stylesheet" />
10
+ {% endfor %}
11
+ </noscript>
12
+ {% endif %}
13
+
@@ -0,0 +1,17 @@
1
+ <div class="d-md-flex mx-3">
2
+ <small class="copyright">
3
+ &copy; <a href="{{ site.url }}">{{ site.title }}</a> {{ site.time | date: '%Y' }}
4
+ </small>
5
+ <small class="text-center" style="right: 0;">
6
+ <a href="{{ site.repo }}" target="_blank">
7
+ <i class="fab fa-github-alt fa-fw"></i>
8
+ Fork Repo
9
+ </a>
10
+ </small>
11
+ <small class="copyright">
12
+ Created by
13
+ <a href="https://mdirfan.vercel.app" target="_blank">
14
+ Mohd Irfan
15
+ </a> for developers <i class="fas fa-heart" style="color: #e62406;"></i>
16
+ </small>
17
+ </div>
@@ -0,0 +1,23 @@
1
+ <footer class="footer text-center py-2 theme-bg-dark" style="position: fixed; right: 0; left: 280px; bottom: 0;">
2
+ {% if site.navigation_footer %}
3
+ <div class="d-flex mx-3 justify-content-between">
4
+ <small class="copyright">
5
+ &copy; <a href="{{ site.url }}">{{ site.title }}</a> {{ site.time | date: '%Y' }}
6
+ </small>
7
+ <small class="text-center" style="right: 0;">
8
+ <a href="{{ site.repo }}" target="_blank">
9
+ <i class="fab fa-github-alt fa-fw"></i>
10
+ Fork Repo
11
+ </a>
12
+ </small>
13
+ <small class="copyright">
14
+ Created by
15
+ <a href="{{ site.navigation_footer[0].url }}" target="_blank">
16
+ {{ site.navigation_footer[0].title }}
17
+ </a> for developers <i class="fas fa-heart" style="color: #e62406;"></i>
18
+ </small>
19
+ </div>
20
+ {% else %}
21
+ {% include site-footer-default.html %}
22
+ {% endif %}
23
+ </footer>
@@ -0,0 +1,66 @@
1
+ <header class="header text-center">
2
+ <nav class="navbar navbar-expand-lg navbar-dark">
3
+
4
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation"
5
+ aria-controls="navigation" aria-expanded="false" aria-label="Toggle navigation">
6
+ <span class="navbar-toggler-icon"></span>
7
+ </button>
8
+
9
+ <div id="navigation" class="collapse navbar-collapse flex-column">
10
+ <!-- Profile Section Start -->
11
+ <div class="profile-section pt-3 pt-lg-0">
12
+ <img class="profile-image mb-3 rounded-circle mx-auto" src="{{ site.logo | relaive_url }}" alt="image">
13
+ <h3 class="blog-name pt-2 mb-3"><a href="{{ site.navigation_header[0].url }}">{{ site.title }}'s
14
+ Blog</a></h3>
15
+
16
+ <div class="bio mb-3">
17
+ Hi, my name is {{ site.author.name }}.
18
+ <p>
19
+ {{ site.author.bio }}
20
+ </p>
21
+ <p>I am a {{ site.author.profession }}.</p>
22
+ <p>
23
+ <strong>Email: &nbsp;</strong><a href="mailto:{{ site.email }}">
24
+ {{ site.author.email }}
25
+ </a>
26
+ </p>
27
+ </div>
28
+ <!-- Bio Section Start-->
29
+ <ul class="social-list list-inline py-3 mx-auto">
30
+ <!-- Social List -->
31
+ {% if site.social_links.Twitter %}
32
+ <li class="list-inline-item"><a href="{{ site.social_links.Twitter }}"><i
33
+ class="fab fa-twitter fa-fw"></i></a></li>
34
+ {% endif %}
35
+ {% if site.social_links.LinkedIn %}
36
+ <li class="list-inline-item"><a href="{{ site.social_links.LinkedIn }}"><i
37
+ class="fab fa-linkedin-in fa-fw"></i></a></li>
38
+ {% endif %}
39
+ {% if site.social_links.Github %}
40
+ <li class="list-inline-item"><a href="{{ site.social_links.GitHub }}"><i
41
+ class="fab fa-github-alt fa-fw"></i></a></li>
42
+ {% endif %}
43
+ {% if site.social_links.Stackoverflow %}
44
+ <li class="list-inline-item"><a href="{{ site.social_links.Stackoverflow }}"><i
45
+ class="fab fa-stack-overflow fa-fw"></i></a></li>
46
+ {% endif %}
47
+ {% if site.social_links.Codepen %}
48
+ <li class="list-inline-item"><a href="{{ site.social_links.Codepen }}"><i
49
+ class="fab fa-codepen fa-fw"></i></a></li>
50
+ {% endif %}
51
+ </ul>
52
+ <!-- Bio Section end-->
53
+ <hr style="background: white;">
54
+ </div>
55
+ <!-- Profile Section End-->
56
+
57
+
58
+ {% include nav-header.html %}
59
+
60
+ <div class="my-2 my-md-3">
61
+ <a class="btn btn-primary" href="{{ site.download_resume | relative_url}}" target="_blank"
62
+ download="{{ site.title }}-resume">Download Resume</a>
63
+ </div>
64
+ </div>
65
+ </nav>
66
+ </header>
@@ -0,0 +1,6 @@
1
+ {% capture styles %}
2
+ @import "alembic";
3
+ {% endcapture %}
4
+ <style>
5
+ {{ styles | scssify | strip_newlines }}
6
+ </style>
@@ -0,0 +1,24 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <!-- Header -->
6
+ {% include site-header.html %}
7
+
8
+ <div class="main-wrapper">
9
+
10
+ <section class="blog-list px-3 py-5 p-md-5">
11
+ <div class="container">
12
+ <!-- Page heading and total number of posts -->
13
+ <h1 class="font-weight-bold pb-3">Blog</h1>
14
+ <hr>
15
+ <p class="text-muted text-uppercase mb-4">Found {{ paginator.total_posts }} posts</p>
16
+ {% include post-list.html %}
17
+
18
+
19
+ </div>
20
+ </section>
21
+
22
+ <!-- Footer -->
23
+ {% include site-footer.html %}
24
+ </div>