inkstream 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 54962b49053a0726f2d8b90edc96ea3de3e897ed1349542136841b93cac96fe7
4
- data.tar.gz: '08b3b8ed5ce4890f5c09736a05443acbc2faf515e6bdc65c29961f969e95bbd6'
3
+ metadata.gz: c64aa327fdb86f1c87a1453fc6ba215890bd846482d9cefe751351ba9b30eabf
4
+ data.tar.gz: 3996db1960094a582351be8fdf077f0637ebfcbf79db496db5d04e63e7223240
5
5
  SHA512:
6
- metadata.gz: a8c7bb18e1d791a00a70ac456af9d30c6330f61939604698f0361f8b20205e754594d5cbbf2b878e85b2bb054e05b3c2b3a98e27c8467d2c635e6fb41e5f1d4d
7
- data.tar.gz: decbee6f4dd0b213f7b133821f76756e215957abca0fc2417ed160f03079e41a11220470cd6a180376432a3d33ef9c52587023f1e9b999be3a024e0860531e0c
6
+ metadata.gz: 8f353d93f2f4d9b0f92a64e7b8a40cd2f67d0c826e189e21fefc525a2c66db6b41b9d68bf4e8c9aafa24e3a284f33aadc076a9a795cbcdbc98ef5f3813b9ff8d
7
+ data.tar.gz: 5be0b4a9f243b4599e14cef3c8f4a929a51bfc04fa6162fa5ca1453ed049ae17f69e71f848e1b5f2a9ef662f6e89ffbefaffae9c82fd5ad1b117ce0961045cc8
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Inkstream
1
+ # Inkstream [![Gem Version](https://badge.fury.io/rb/inkstream.svg)](https://badge.fury.io/rb/inkstream)
2
2
 
3
3
  Welcome to a brand new Jekyll theme!
4
4
 
data/_config.yml CHANGED
@@ -1,6 +1,76 @@
1
- ### Site Configuration ###
1
+ # =================================================================================
2
+ # Site Configuration
3
+ # =================================================================================
2
4
 
3
- # 1. Files excluded from Jekyll builds
5
+ title : blank # The site title (if blank, full name will be used instead)
6
+ full_name : Your Full Name # The full site name (if blank, title will be used instead)
7
+ email : 'your@gmail.com' # Your email address
8
+ lang : en # Site language (en for English)
9
+ encoding : utf-8 # Site encoding (utf-8 for Unicode)
10
+ icon : '/assets/favicon/favicon.ico' # Site favicon
11
+ logo : '/assets/logo/logo.jpg' # Site logo, also used in jekyll-seo-tag
12
+ home-bg : '/assets/images/home-bg.jpg' # Home background image
13
+ url : 'https://inkstream.netlify.app' # Site URL (if using a custom domain)
14
+ baseurl : '' # Site base URL (add if site is not at root)
15
+ repo : 'https://github.com/dev-mdirfan/inkstream' # Site repository, also used in jekyll-seo-tag
16
+ description : > # Site description and default description, also used in jekyll-seo-tag
17
+ A minimal, responsive, and fast Jekyll theme for personal blogs and portfolios.
18
+ keywords : > # For SEO
19
+ jekyll, theme, minimal, responsive, blog, portfolio, fast, seo, social, web, development
20
+ footer_text : '© 2021 Inkstream' # Footer text
21
+
22
+
23
+
24
+ # =================================================================================
25
+ # Theme Settings
26
+ # =================================================================================
27
+
28
+ # ---
29
+
30
+
31
+
32
+
33
+ # =================================================================================
34
+ # Social Integration
35
+ # =================================================================================
36
+
37
+ social_links: # Leave blank according to your need
38
+ linkedin_username : mdirfan57 # Your LinkedIn username
39
+ github_username : dev-mdirfan # Your GitHub username
40
+ twitter_username : mohdirfan57 # Your Twitter username
41
+ stackoveflow_username : 13520260/mohd-irfan # Your Stackoverflow username
42
+ codepen_username : mohdirfan57 # Your Codepen username
43
+
44
+ user:
45
+ name : Sarah Parker # Your name (required)
46
+ bio : 'A passionate web developer and designer.' # Short bio, You can also provide a links.
47
+ profession : 'Web Developer' # Your profession (optional)
48
+ location : 'India' # Your location (optional)
49
+ email : your@gmail.com # Your email address (optional)
50
+
51
+ download_resume: '/assets/resume/resume.pdf' # Add the path to your resume
52
+
53
+
54
+
55
+ # =================================================================================
56
+ # Jekyll Settings
57
+ # =================================================================================
58
+
59
+ # Markdown and syntax highlight
60
+ markdown: kramdown
61
+ highlighter: rouge
62
+ kramdown:
63
+ input: GFM
64
+ syntax_highlighter_opts:
65
+ css_class: "highlight"
66
+ span:
67
+ line_numbers: false
68
+ block:
69
+ line_numbers: false
70
+ start_line: 1
71
+
72
+ # Includes & excludes
73
+ include: ["_pages", "blog", "_posts"]
4
74
  exclude:
5
75
  - README.md
6
76
  - LICENSE
@@ -10,20 +80,71 @@ exclude:
10
80
  - Gemfile.lock
11
81
  - inkstream.gemspec
12
82
  - .jekyll-cache
13
- - demo
83
+ - /demo/
84
+ # - CONTRIBUTING.md
85
+ # - INSTALL.md
14
86
 
15
- # 2. Installed Gems
87
+ # Plugins
16
88
  plugins:
17
89
  - jekyll-paginate
18
90
  - jekyll-seo-tag
19
- # - rouge does not work
20
- # - kramdown
21
-
22
- # 3. Gem settings
23
- paginate: 5 # jekyll-paginate > items per page
24
- paginate_path: blog/:num # jekyll-paginate > blog page
25
- pinned: false # jekyll-seo-tag > pin the post to the top of the list
26
- author: MohdIrfan # jekyll-seo-tag > default author
91
+
92
+ # Defaults
93
+ defaults:
94
+ - # Page settings
95
+ scope:
96
+ path: ""
97
+ type: "pages"
98
+ values:
99
+ layout: "page"
100
+ - # Post settings
101
+ scope:
102
+ path: ""
103
+ type: "posts"
104
+ values:
105
+ layout: "post"
106
+ -
107
+ scope:
108
+ path: ""
109
+ values:
110
+ image: '/assets/images/posts/default-post-img.jpg' # Default post image
111
+ # - # Sitemap settings
112
+ # scope:
113
+ # path: "assets"
114
+ # values:
115
+ # sitemap: false
116
+
117
+
118
+
119
+ # =================================================================================
120
+ # Site Navigation
121
+ # =================================================================================
122
+
123
+ # Nav Links
124
+ navigation_header:
125
+ -
126
+ title: Home
127
+ url: /
128
+ icon: home
129
+ -
130
+ title: Blog
131
+ url: /blog/
132
+ icon: blog
133
+ -
134
+ title: About Me
135
+ url: /about/
136
+ icon: user
137
+
138
+ navigation_footer:
139
+ -
140
+ title: Mohd Irfan
141
+ url: https://github.com/dev-mdirfan/
142
+
143
+ # Gem settings (jekyll-paginate, jekyll-seo-tag)
144
+ paginate : 5 # jekyll-paginate > items per page
145
+ paginate_path : blog/:num # jekyll-paginate > blog page
146
+ pinned : false # jekyll-seo-tag > pin the post to the top of the list
147
+ author : MohdIrfan # jekyll-seo-tag > default author
27
148
  twitter:
28
149
  username: mohdirfan57 # jekyll-seo-tag > Owners twitter username
29
150
  social: # jekyll-seo-tag > social overrides
@@ -49,37 +170,6 @@ collections:
49
170
  pin: true # Pin the post to the top of the list
50
171
  image: 'https://picsum.photos/2560/600?image=866'
51
172
 
52
- # 6. Jekyll defaults
53
- defaults:
54
- - scope:
55
- path: ''
56
- values:
57
- image: '/assets/images/posts/default-post-img.jpg' # Default image for sharing
58
- - scope:
59
- path: ''
60
- type: 'posts'
61
- values:
62
- layout: post # Set the default layout for posts
63
- - scope:
64
- path: ''
65
- type: 'pages'
66
- values:
67
- layout: page # Set the default layout for pages
68
-
69
- # 7. Site settings
70
- encoding: utf-8 # Make sure the encoding is right
71
- lang: en # Set the site language
72
- title: 'Inkstream' # Site name or title, also used in jekyll-seo-tag
73
- logo: '/assets/logo/logo.jpg' # Site logo, also used in jekyll-seo-tag
74
- home-bg: '/assets/images/home-bg.jpg' # Home background image
75
- 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
76
- url: 'https://inkstream.netlify.app' # Site url, also used in jekyll-seo-tag
77
- baseurl: ''
78
- repo: 'https://github.com/dev-mdirfan/inkstream' # Site repository, also used in jekyll-seo-tag
79
- email: 'mdirfan5702@gmail.com'
80
- # short_name: "Al" # The web application short name, defaults to the site title
81
- css_inline: false # Will insert all styles into a single <style> block in the <head> element and remove the style <link> reference
82
-
83
173
  # 8. Site favicons & manifest icons
84
174
  favicons: # Favicons are also used in the manifest file. Syntax is 'size: path'
85
175
  '16': '/assets/favicon/favicon-16x16.png'
@@ -91,39 +181,7 @@ favicons: # Favicons are also used in the manifest file. Syntax is 'size: path'
91
181
  webmanifest: '/assets/favicon/site.webmanifest'
92
182
  safari: '/assets/favicon/safari-pinned-tab.svg'
93
183
 
94
- # 9. Site navigation
95
- navigation_header:
96
- - title: Home
97
- url: /
98
- icon: home
99
- - title: Blog
100
- url: /blog/
101
- icon: blog
102
- - title: About Me
103
- url: /about/
104
- icon: user
105
184
 
106
- navigation_footer:
107
- - title: Mohd Irfan
108
- url: https://github.com/dev-mdirfan/
109
-
110
- # 10. Your Personal Info (Social links - Appears in sidebar)
111
- author:
112
- name: Sarah Parker # Your name (required)
113
- bio: 'A passionate web developer and designer.' # Short bio or description, You can also provide a link to the about page. (required)
114
- profession: 'Web Developer' # Your profession (optional)
115
- location: 'India' # Your location (optional)
116
- email: your@gmail.com # Your email address (optional)
117
- social_links: # Set the urls then uncomment and comment out as desired
118
- Twitter: https://twitter.com/mohdirfan57
119
- LinkedIn: https://www.linkedin.com/in/mdirfan57
120
- GitHub: https://github.com/dev-mdirfan
121
- Stackoverflow: https://stackoverflow.com/users/13520260/mohd-irfan
122
- Codepen: https://codepen.io/mohdirfan57
123
- download_resume: '/assets/resume/resume.pdf' # Add the path to your resume
124
- # sharing_links: # Appear at the bottom of single blog posts, add as desired. The value can be 'true' or the desired button colour
125
- # Twitter: '#0d94e7'
126
- # facebook: '#3B5998'
127
185
  # Email: true
128
186
 
129
187
  # # Load custom fonts from fonts.google.com etc
@@ -0,0 +1,41 @@
1
+ <!-- Metadata -->
2
+ <meta charset="{{ site.encoding | default: 'utf-8' }}">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
5
+ <meta name="description" content="{{ site.description | default: 'A sleek and modern Jekyll theme tailored for bloggers seeking a seamless platform to express their ideas and stories.' }}">
6
+ <meta name="author" content="{{ site.author.name }}">
7
+ <!-- Favicons -->
8
+ {% if site.favicons or site.avatarurl %}{% include site-favicons.html %}{% endif %}
9
+
10
+
11
+ {% if page.indexing == false %}
12
+ <meta name="robots" content="noindex">
13
+ {% endif %}
14
+
15
+ {% if page.collectionpage %}
16
+ {% seo title=false %}
17
+
18
+ {% assign collectiondata = site.collections | where: "label", page.collectionpage | first %}
19
+ <!-- Title -->
20
+ <title>{{ collectiondata.title }} | {{ site.title }}</title>
21
+ <meta property="og:title" content="{{ collectiondata.title }}">
22
+ <meta name="description" content="{{ collectiondata.description }}">
23
+ <meta property="og:description" content="{{ collectiondata.description }}">
24
+ {% else %}
25
+ {% seo %}
26
+ {% endif %}
27
+
28
+ <!-- FontAwesome JS-->
29
+ <!-- {% include site-fonts.html %} -->
30
+ <script src="https://use.fontawesome.com/releases/v5.7.1/js/all.js"
31
+ integrity="sha384-eVEQC9zshBn0rFj4+TU78eNA19HMNigMviK/PU/FFjLXqa/GKPgX58rvt5Z8PLs7" crossorigin="anonymous">
32
+ </script>
33
+
34
+
35
+ {% if site.css_inline == true %}
36
+ {% include site-styles.html %}
37
+ {% else %}
38
+ <!-- CSS -->
39
+ <link id="theme-style" rel="stylesheet" href="{{ '/assets/css/styles.css' | relative_url }}">
40
+ {% endif %}
41
+ <!-- End of _includes/head.html -->
@@ -1,7 +1,7 @@
1
1
  <nav class="nav">
2
2
  <ul class="list list--nav">
3
3
  {% for item in site.html_pages %}
4
- {% unless item.title == false or item.url contains "/page" or item.url contains "/404.html" %}
4
+ {% unless item.title == false or item.url contains "/page" or item.url contains "/404" %}
5
5
  <li class="item item--nav{% if item.url == page.url %} item--current{% endif %}">
6
6
 
7
7
  {% if item.url contains '://' %}
@@ -0,0 +1 @@
1
+ <script src="{{ 'assets/plugins/bootstrap/js/bootstrap.min.js' | relative_url }}"></script>
@@ -0,0 +1 @@
1
+ <script src="{{ 'assets/plugins/jquery-3.3.1.min.js' | relative_url }}"></script>
@@ -0,0 +1 @@
1
+ <script src="{{'assets/plugins/popper.min.js' | relative_url }}"></script>
@@ -9,47 +9,29 @@
9
9
  <div id="navigation" class="collapse navbar-collapse flex-column">
10
10
  <!-- Profile Section Start -->
11
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>
12
+ <a href="{{ site.navigation_header[0].url }}">
13
+ <img class="profile-image mb-3 rounded-circle mx-auto" src="{{ site.logo | relaive_url }}" alt="image">
14
+ </a>
15
+ <h3 class="blog-name pt-2 mb-3">
16
+ <a href="{{ site.navigation_header[0].url }}">{{ site.user.name }}'s Blog</a>
17
+ </h3>
15
18
 
19
+ <!-- Bio Section Start-->
16
20
  <div class="bio mb-3">
17
- Hi, my name is {{ site.author.name }}.
21
+ Hi, my name is {{ site.user.name }}.
18
22
  <p>
19
- {{ site.author.bio }}
23
+ {{ site.user.bio }}
20
24
  </p>
21
- <p>I am a {{ site.author.profession }}.</p>
25
+ <p>I am a {{ site.user.profession }}.</p>
22
26
  <p>
23
27
  <strong>Email: &nbsp;</strong><a href="mailto:{{ site.email }}">
24
- {{ site.author.email }}
28
+ {{ site.user.email }}
25
29
  </a>
26
30
  </p>
27
31
  </div>
28
- <!-- Bio Section Start-->
29
32
  <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 %}
33
+ {% include social.html %}
51
34
  </ul>
52
- <!-- Bio Section end-->
53
35
  <hr style="background: white;">
54
36
  </div>
55
37
  <!-- Profile Section End-->
@@ -0,0 +1,36 @@
1
+ <!-- Social List -->
2
+ {% if site.social_links.linkedin_username %}
3
+ <li class="list-inline-item">
4
+ <a href="https://www.linkedin.com/in/{{ site.social_links.linkedin_username }}" target="_blank">
5
+ <i class="fab fa-linkedin-in fa-fw"></i>
6
+ </a>
7
+ </li>
8
+ {% endif %}
9
+ {% if site.social_links.github_username %}
10
+ <li class="list-inline-item">
11
+ <a href="https://github.com/{{ site.social_links.github_username }}" target="_blank">
12
+ <i class="fab fa-github-alt fa-fw"></i>
13
+ </a>
14
+ </li>
15
+ {% endif %}
16
+ {% if site.social_links.twitter_username %}
17
+ <li class="list-inline-item">
18
+ <a href="https://twitter.com/{{ site.social_links.twitter_username }}" target="_blank">
19
+ <i class="fab fa-twitter fa-fw"></i>
20
+ </a>
21
+ </li>
22
+ {% endif %}
23
+ {% if site.social_links.stackoverflow_username %}
24
+ <li class="list-inline-item">
25
+ <a href="https://stackoverflow.com/users/{{ site.social_links.stackoverflow_username }}" target="_blank">
26
+ <i class="fab fa-stack-overflow fa-fw"></i>
27
+ </a>
28
+ </li>
29
+ {% endif %}
30
+ {% if site.social_links.codepen_username %}
31
+ <li class="list-inline-item">
32
+ <a href="https://codepen.io/{{ site.social_links.codepen_usernamen }}" target="_blank">
33
+ <i class="fab fa-codepen fa-fw"></i>
34
+ </a>
35
+ </li>
36
+ {% endif %}
@@ -2,61 +2,17 @@
2
2
  <html lang="{{ site.lang | default: 'en' }}">
3
3
 
4
4
  <head>
5
- <!-- Meta -->
6
- <meta charset="utf-8">
7
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
8
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
9
- <meta name="description" content="Blog Template">
10
- <meta name="author" content="Xiaoying Riley at 3rd Wave Media">
11
- <!-- Favicons -->
12
- {% if site.favicons or site.avatarurl %}{% include site-favicons.html %}{% endif %}
13
-
14
-
15
- {% if page.indexing == false %}
16
- <meta name="robots" content="noindex">
17
- {% endif %}
18
-
19
- {% if page.collectionpage %}
20
- {% seo title=false %}
21
-
22
- {% assign collectiondata = site.collections | where: "label", page.collectionpage | first %}
23
- <!-- Title -->
24
- <title>{{ collectiondata.title }} | {{ site.title }}</title>
25
- <meta property="og:title" content="{{ collectiondata.title }}">
26
- <meta name="description" content="{{ collectiondata.description }}">
27
- <meta property="og:description" content="{{ collectiondata.description }}">
28
- {% else %}
29
- {% seo %}
30
- {% endif %}
31
-
32
- <!-- FontAwesome JS-->
33
- <!-- {% include site-fonts.html %} -->
34
- <script src="https://use.fontawesome.com/releases/v5.7.1/js/all.js"
35
- integrity="sha384-eVEQC9zshBn0rFj4+TU78eNA19HMNigMviK/PU/FFjLXqa/GKPgX58rvt5Z8PLs7"
36
- crossorigin="anonymous">
37
- </script>
38
-
39
-
40
- {% if site.css_inline == true %}
41
- {% include site-styles.html %}
42
- {% else %}
43
- <!-- Theme CSS -->
44
- <link id="theme-style" rel="stylesheet" href="{{ '/assets/css/styles.css' | relative_url }}">
45
- {% endif %}
46
-
47
- {% include site-before-start.html %}
5
+ {% include head.html %}
48
6
  </head>
49
7
 
50
8
  <body>
51
9
 
52
10
  {{ content }}
53
11
 
54
- {% include site-before-end.html %}
55
- <!-- Javascript -->
56
- <script src="{{ 'assets/plugins/jquery-3.3.1.min.js' | relative_url }}"></script>
57
- <script src="{{'assets/plugins/popper.min.js' | relative_url }}"></script>
58
- <script src="{{ 'assets/plugins/bootstrap/js/bootstrap.min.js' | relative_url }}"></script>
59
-
12
+ <!-- JavaScripts -->
13
+ {% include scripts/jquery.html %}
14
+ {% include scripts/popper.html %}
15
+ {% include scripts/bootstrap.html %}
60
16
  </body>
61
17
 
62
18
  </html>
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inkstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mohd Irfan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-05 00:00:00.000000000 Z
11
+ date: 2024-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -52,6 +52,34 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '2.8'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rouge
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 4.2.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 4.2.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: kramdown
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 2.4.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 2.4.0
55
83
  description: Inkstream is a sleek and modern Jekyll theme tailored for bloggers seeking
56
84
  a seamless platform to express their ideas and stories. With its elegant design
57
85
  and intuitive features, Inkstream facilitates the continuous flow of content creation,
@@ -66,6 +94,7 @@ files:
66
94
  - README.md
67
95
  - _config.yml
68
96
  - _includes/button.html
97
+ - _includes/head.html
69
98
  - _includes/icon.html
70
99
  - _includes/nav-default.html
71
100
  - _includes/nav-header.html
@@ -74,14 +103,16 @@ files:
74
103
  - _includes/post-meta.html
75
104
  - _includes/post-pagination.html
76
105
  - _includes/promo-section.html
77
- - _includes/site-before-end.html
78
- - _includes/site-before-start.html
106
+ - _includes/scripts/bootstrap.html
107
+ - _includes/scripts/jquery.html
108
+ - _includes/scripts/popper.html
79
109
  - _includes/site-favicons.html
80
110
  - _includes/site-fonts.html
81
111
  - _includes/site-footer-default.html
82
112
  - _includes/site-footer.html
83
113
  - _includes/site-header.html
84
114
  - _includes/site-styles.html
115
+ - _includes/social.html
85
116
  - _layouts/blog.html
86
117
  - _layouts/default.html
87
118
  - _layouts/page.html
@@ -1 +0,0 @@
1
- <!-- Overwrite this file with code you want before the closing body tag -->
@@ -1 +0,0 @@
1
- <!-- Overwrite this file with code you want before the closing head tag -->