jekyll-theme-nocc 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ccf902485123f0bb06a84e1f2006f8c1bfa32a2711f6e6b924f2e370852f0fc
4
- data.tar.gz: 13af2925ec71f3d6362658f8c4f6e255ccdf8188ad72c3d562c2f7e4954bf9e3
3
+ metadata.gz: 4288d6988499cc0e80908ee8e434b0d2e4132a27a77fbfba44163d5290c03e27
4
+ data.tar.gz: 0a3768ebf8fd4ab34d7be73918e8f2d1ad3048cf013ac9a564170cfa0f3b0582
5
5
  SHA512:
6
- metadata.gz: c7155998d0330d74f6e45618ef21c29fb6bd2a4ba4e8fcf223daf054bdccb4e4474b8247cc039d2e4af69842caeaaa4f7ee7edb91e78167996f6299cc26bdf7d
7
- data.tar.gz: f90c81b5f7acc504b2253f7ff3a1da313dd690246083ce723628ffd0ed3da6f4b1727f1bf4f29e8fa4f3b2ad627f26683b5bbbbfab2b926853671223639bcfd5
6
+ metadata.gz: 55a51971456413057b6834a278881eb0782680c73de9934d03e1e2490c0b2c38fbcce64e6e8dff9f366072ee3fb4d8da7a6f8c0541fa4b8b67399f27129214da
7
+ data.tar.gz: 6a1d7f12dc637a962ef2cab2646b15057b2a9d490edbdcfa3684c2c29db718d3279f808fa4e706f6fdb7d480183d8af7ed848cba02dc1102d4653dcf45cf3417
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # jekyll-theme-nocc
1
+ # Jekyll Theme: NOCC Bootstrap Jekyll Theme
2
+
3
+ This README provides instructions for installing and configuring the NOCC Bootstrap Jekyll Theme.
2
4
 
3
5
  ## Introduction
4
6
 
@@ -8,22 +10,30 @@
8
10
 
9
11
  It comes in three powerful options:
10
12
 
11
- - **💎 Theme Jekyll Nocc**: A Ruby gem that brings the power of NOCC directly to your Jekyll project. [Get it now!](https://rubygems.org/gems/jekyll-theme-nocc).
12
- - **🌟 Nocc Bootstrap Theme**: An NPM Package that brings the power of NOCC directly to your NodeJS project. [Get it now!](https://www.npmjs.com/package/nocc-bootstrap-theme).
13
- - **🌐 Full Site Bundle for Jekyll**: A complete static website showcasing NOCC's seamless integration. Featuring a beautifully designed homepage, dynamic tag cloud, image gallery, and more. [Explore on GitHub](https://github.com/carlesloriente/bootstrap-theme-jekyll).
13
+ - **💎 [Theme Jekyll Nocc](https://rubygems.org/gems/jekyll-theme-nocc)**: A Ruby gem that brings the power of NOCC directly to your Jekyll project.
14
+ - **🌟 [Nocc Bootstrap Theme](https://www.npmjs.com/package/nocc-bootstrap-theme)**: An NPM Package that brings the power of NOCC directly to your NodeJS project.
15
+ - **🌐 [Full Site Bundle for Jekyll](https://github.com/carlesloriente/bootstrap-theme-jekyll)**: A complete static website showcasing NOCC's seamless integration. Featuring a beautifully designed homepage, dynamic tag cloud, image gallery, and more.
14
16
 
15
17
  > **ⓘ** NOCC is a complete replacement for Bootstrap 5.3.3
16
18
 
17
19
  ## Table of contents
18
20
 
19
- - [jekyll-theme-nocc](#jekyll-theme-nocc)
21
+ - [Jekyll Theme: NOCC Bootstrap Jekyll Theme](#jekyll-theme-nocc-bootstrap-jekyll-theme)
20
22
  - [Introduction](#introduction)
21
23
  - [Table of contents](#table-of-contents)
22
24
  - [Features](#features)
23
25
  - [Installation](#installation)
24
- - [Usage](#usage)
26
+ - [1. Add the theme to your Gemfile](#1-add-the-theme-to-your-gemfile)
27
+ - [2. Specify the theme in your \_config.yml](#2-specify-the-theme-in-your-_configyml)
28
+ - [3. Install the theme](#3-install-the-theme)
29
+ - [Setting up the theme](#setting-up-the-theme)
30
+ - [1. Modify \_config.yml](#1-modify-_configyml)
31
+ - [2. Modify index.markdown](#2-modify-indexmarkdown)
32
+ - [How to enable](#how-to-enable)
33
+ - [Tags section](#tags-section)
34
+ - [Contact form](#contact-form)
35
+ - [Gallery section](#gallery-section)
25
36
  - [Contributing](#contributing)
26
- - [Development](#development)
27
37
  - [Creator](#creator)
28
38
  - [Thanks](#thanks)
29
39
  - [Copyright and License](#copyright-and-license)
@@ -38,42 +48,228 @@ It comes in three powerful options:
38
48
 
39
49
  ## Installation
40
50
 
41
- Add this line to your Jekyll site's `Gemfile`:
51
+ ### 1. Add the theme to your Gemfile
52
+
53
+ Add the following line to your Jekyll site's `Gemfile`:
42
54
 
43
55
  ```ruby
44
56
  gem "jekyll-theme-nocc"
45
57
  ```
46
58
 
47
- And add this line to your Jekyll site's `_config.yml`:
59
+ ### 2. Specify the theme in your _config.yml
60
+
61
+ Add the following line to your Jekyll site's _config.yml file:
48
62
 
49
63
  ```yaml
50
64
  theme: jekyll-theme-nocc
51
65
  ```
52
66
 
53
- And then execute:
67
+ ### 3. Install the theme
54
68
 
55
- $ bundle
69
+ Execute the following command in your terminal:
56
70
 
57
- Or install it yourself as:
71
+ ```bash
72
+ bundle
73
+ ```
58
74
 
59
- $ gem install jekyll-theme-nocc
75
+ Alternatively, you can install it directly using gem:
60
76
 
61
- ## Usage
77
+ ```bash
78
+ gem install jekyll-theme-nocc
79
+ ```
62
80
 
63
- TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
81
+ ## Setting up the theme
64
82
 
65
- ## Contributing
83
+ ### 1. Modify _config.yml
66
84
 
67
- Bug reports and pull requests are welcome on GitHub at https://github.com/carlesloriente/jekyll-theme-nocc. 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.
85
+ Edit your Jekyll site's _config.yml file. It's recommended to add the following plugins after the jekyll-feed plugin if you're using it, to avoid potential conflicts:
86
+
87
+ ```yaml
88
+ plugins:
89
+ - jekyll-feed
90
+ - jekyll-paginate
91
+ - jekyll-redirect-from
92
+ ```
93
+
94
+ Next, add the following configuration options to your _config.yml file, replacing the placeholder values with your own:
95
+
96
+ ```yaml
97
+ author: Your Name
98
+ author_url: "https://www.yoururl.com"
99
+ timezone: "Europe/Madrid" # Timezone for your site
100
+ full_description: >
101
+ A long description of your site. This can span multiple lines.
102
+ gh_repository: https://github.com/yourusername/yourrepo
103
+ encoding: "utf-8"
104
+ locale: "en-US" # Language and locale
105
+ lang: "en" # Language code
106
+ email: "your_email_address"
107
+ permalink: pretty # URL structure for posts
108
+
109
+ # Site Manifest (for PWA support)
110
+ name: "Site name"
111
+ short_name: "NAME"
112
+ language: "en"
113
+ lang_direction: "ltr"
114
+ color: "#FFFFFF" # Background color for manifest
115
+
116
+ # Social Profiles
117
+ linkedin_username: your_linkedin_username
118
+
119
+ # Google Analytics (Optional)
120
+ google_analytics: "G-XXXXXXXXXX" # Your Google Analytics tracking ID
121
+ google_site_verification: "YOUR_GOOGLE_SITE_VERIFICATION_TOKEN" # Optional: For Google Search Console verification.
122
+ google_adsense_account: "ca-pub-XXXXXXXXXXXXXXXX" # Optional: Your AdSense account ID
123
+ google_tag_id: "GTM-XXXXXXX" # Optional: Your Google Tag Manager ID
124
+
125
+ # Disqus Comments (Optional)
126
+ disqus_shortname: your_disqus_shortname # Leave blank to disable comments site-wide. You can disable comments on individual posts by adding `comments: false` to the post's YAML front matter.
127
+
128
+ # Formspree Contact Form
129
+ formemail: "your_formemail_address" # Your Formspree email address (see "How to enable the contact form" section)
130
+
131
+ # Theme Information (Please do not remove these)
132
+ theme_version : v2.0.2
133
+ theme_name : NOCC Bootstrap Jekyll Theme
134
+ theme_repo : https://github.com/carlesloriente/jekyll-theme-nocc/
135
+ theme_url : https://bootstrap-theme.notesoncloudcomputing.com/
136
+ theme_author : Carles Loriente
137
+ theme_author_url : https://www.notesoncloudcomputing.com/about/
138
+ theme_download : https://github.com/carlesloriente/jekyll-theme-nocc/archive/refs/heads/main.zip
139
+ theme_package : https://rubygems.org/gems/jekyll-theme-nocc
140
+ theme_logo : "/assets/vendor/nocc-bootstrap-theme/images/nocc/nocc_logo.webp"
141
+
142
+ exclude: ["AUTHORS.md", "CODE_OF_CONDUCT.md", "CONTRIBUTING.md", "CODEOWNERS", "LICENSE", "README.md", "SECURITY.md", "WORKFLOW.md", "Gemfile", "Gemfile.lock", "vendor/bundle/", "vendor/cache/", "vendor/gems/", "vendor/ruby/"]
143
+ ```
144
+
145
+ ### 2. Modify index.markdown
146
+
147
+ Edit your `index.markdown` file and add the following front matter parameters after `layout: home`:
148
+
149
+ ```markdown
150
+ background: '/assets/images/bg-index.webp'
151
+ carousel:
152
+ - '/assets/images/bg-index.webp'
153
+ - '/assets/images/bg-index-2.webp'
154
+ - '/assets/images/bg-index-3.webp'
155
+ ```
156
+
157
+ ## How to enable
158
+
159
+ ### Tags section
160
+
161
+ **1. Create a new file named tags.markdown in your site's root directory**.
68
162
 
69
- ## Development
163
+ **2. Add the following content to tags.markdown**:
70
164
 
71
- To set up your environment to develop this theme, run `bundle install`.
165
+ ```markdown
166
+ ---
167
+ title: Tags list
168
+ layout: tags_index
169
+ permalink: /tags/
170
+ description: A tag cloud from posts
171
+ categories: tags
172
+ background: '/assets/images/bg-gallery.webp'
173
+ tagsindex: true
174
+ ---
175
+ ```
176
+
177
+ **3. To add tags to your posts, include the tags front matter parameter in your post files**:
178
+
179
+ ```markdown
180
+ tags:
181
+ - firsttag
182
+ - secondtag
183
+ - another-tag
184
+ ```
185
+
186
+ ### Contact form
187
+
188
+ This theme uses Formspree to handle contact form submissions.
189
+
190
+ 1. Create a Formspree account: Sign up for a free account at [FormSpree](https://formspree.io/).
191
+
192
+ 2. Create a new form in your Formspree account.
193
+
194
+ 3. Create a new file named `contact.html` in your site's root directory.
195
+
196
+ 4. Add the contact form code: Add the following content to contact.html, replacing `YOUR_FORM_ID` with the ID from your Formspree form (you'll find it in the Formspree form's setup instructions):
197
+
198
+ ```html
199
+ ---
200
+ layout: page
201
+ title: Contact
202
+ permalink: /contact/
203
+ description: Contact me form
204
+ categories: contact me
205
+ background: '/assets/images/bg-contact.webp'
206
+ form: true
207
+ ---
208
+
209
+ <p>Want to get in touch? Send me a message!</p>
210
+ <form name="sentMessage" id="contactForm" novalidate>
211
+ <div class="control-group">
212
+ <div class="form-group floating-label-form-group controls">
213
+ <label>Name</label>
214
+ <input type="text" class="form-control" placeholder="Name" id="name" required data-bs-validation-required-message="Please enter your name.">
215
+ <p class="help-block text-danger"></p>
216
+ </div>
217
+ </div>
218
+ <div class="control-group">
219
+ <div class="form-group floating-label-form-group controls">
220
+ <label>Email Address</label>
221
+ <input type="email" class="form-control" placeholder="Email Address" id="email" required data-bs-validation-required-message="Please enter your email address.">
222
+ <p class="help-block text-danger"></p>
223
+ </div>
224
+ </div>
225
+ <div class="control-group">
226
+ <div class="form-group floating-label-form-group controls">
227
+ <label>Message</label>
228
+ <textarea rows="5" class="form-control" placeholder="Message" id="message" required data-bs-validation-required-message="Please enter a message."></textarea>
229
+ <p class="help-block text-danger"></p>
230
+ </div>
231
+ </div>
232
+ <br>
233
+ <div id="success"></div>
234
+ <div class="form-group">
235
+ <button type="submit" class="btn btn-primary float-end" id="sendMessageButton">Send</button>
236
+ </div>
237
+ </form>
238
+ ```
239
+
240
+ Configure `formemail` in `_config.yml`: While the form submits directly to Formspree, you should still set the formemail option in your `_config.yml` file. This is used by the theme for other purposes, even if not directly related to the contact form itself.
241
+
242
+ You can use a service like Firefox Relay to protect your actual email address.
243
+
244
+ ```yaml
245
+ formemail : "form@email.com"
246
+ ```
72
247
 
73
- 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.
248
+ ### Gallery section
74
249
 
75
- When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
76
- To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-nocc.gemspec` accordingly.
250
+ 1. Create the gallery directory: Create a directory named `gallery` inside your `assets/images` directory.
251
+
252
+ 2. Add images: Place all the images you want to display in the gallery section into the newly created `gallery` directory.
253
+
254
+ 3. Create a new file named `gallery.html` in your site's root directory.
255
+
256
+ 4. Add the following content to gallery.html:
257
+
258
+ ```html
259
+ ---
260
+ layout: images_gallery
261
+ title: Gallery
262
+ description: A gallery of images used in the article header.
263
+ categories: gallery images
264
+ background: '/assets/images/bg-gallery.webp'
265
+ ---
266
+ ```
267
+
268
+ This will automatically display all images found in the `assets/images/gallery` directory. The `images_gallery` layout handles the display logic. No further configuration is usually required.
269
+
270
+ ## Contributing
271
+
272
+ Bug reports and pull requests are welcome on GitHub at https://github.com/carlesloriente/jekyll-theme-nocc. 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.
77
273
 
78
274
  ## Creator
79
275
 
data/_config.yml CHANGED
@@ -1,44 +1,33 @@
1
1
  landing : false
2
- title : NOCC
2
+ title : Site title
3
3
  author : Your Name
4
- url : "https://www.yoururl.com"
4
+ url : "https://www.yoursiteurl.com"
5
5
  author_url : "https://www.yoururl.com"
6
6
  baseurl : "/"
7
7
  timezone : "Europe/Madrid"
8
- description : A responsive dual theme using Bootstrap 5 for Jekyll created by Carles Loriente.
8
+ description : Short description of your site.
9
9
  full_description : >
10
- A responsive dual theme using Bootstrap 5 for Jekyll created by Carles Loriente. Featuring a homepage, about page, tags cloud page, gallery of images page, examples post pages, post comments powered by Disqus, and contact page form powered by Formspree.
10
+ A long description of your site.
11
11
  gh_repository : https://github.com/yourusername/yourrepo/
12
12
  encoding : "utf-8"
13
13
  locale : "en-US"
14
14
  lang : "en"
15
- formemail :
15
+ formemail : "form@email.com"
16
+ email : "you@email.com"
16
17
  permalink : pretty
17
18
 
18
19
  # Manifest
19
- name : "NOCC Boostrap Jekyll Theme"
20
- short_name : "NOCC"
20
+ name : "Site name"
21
+ short_name : "NAME"
21
22
  language : "en"
22
23
  lang_direction : "ltr"
23
24
  color : "#FFFFFF"
24
25
 
25
- # Theme Notice (please don't remove it ;))
26
- theme_version : v2.0.0
27
- theme_name : NOCC Bootstrap Jekyll Theme
28
- theme_repo : https://github.com/carlesloriente/jekyll-theme-nocc/
29
- theme_url : https://bootstrap-theme.notesoncloudcomputing.com/
30
- theme_author : Carles Loriente
31
- theme_author_url : https://www.notesoncloudcomputing.com/about/
32
- theme_download : https://github.com/carlesloriente/jekyll-theme-nocc/archive/refs/heads/main.zip
33
- theme_package : https://rubygems.org/gems/jekyll-theme-nocc
34
- theme_logo : "/assets/vendor/nocc-bootstrap-theme/images/nocc/nocc_logo.webp"
35
-
36
- # Social Profiles
37
- email : "you@email.com"
38
- twitter_username :
26
+ # Add your Social Profiles
27
+ twitter_username :
39
28
  github_username :
40
29
  linkedin_username :
41
- kofi :
30
+ kofi :
42
31
 
43
32
  # Add your google-analytics ID here to activate google analytics
44
33
  google_site_verification:
@@ -46,11 +35,23 @@ google_analytics :
46
35
  google_adsense_account :
47
36
  google_tag_id :
48
37
 
49
- # Disqus Comments
50
- # Leave shortname blank to disable comments site-wide.
38
+ # Disqus Comments. Leave shortname blank to disable comments site-wide.
51
39
  # Disable comments for any post by adding `comments: false` to that post's YAML Front Matter.
52
40
  disqus_shortname :
53
41
 
42
+
43
+ # Theme Notice (please don't remove it ;))
44
+ theme_version : v2.0.0
45
+ theme_name : NOCC Bootstrap Jekyll Theme
46
+ theme_repo : https://github.com/carlesloriente/jekyll-theme-nocc/
47
+ theme_url : https://bootstrap-theme.notesoncloudcomputing.com/
48
+ theme_author : Carles Loriente
49
+ theme_author_url : https://www.notesoncloudcomputing.com/about/
50
+ theme_download : https://github.com/carlesloriente/jekyll-theme-nocc/archive/refs/heads/main.zip
51
+ theme_package : https://rubygems.org/gems/jekyll-theme-nocc
52
+ theme_logo : "/assets/vendor/nocc-bootstrap-theme/images/nocc/nocc_logo.webp"
53
+
54
+ # Site settings
54
55
  includes_dir : _includes
55
56
  layouts_dir : _layouts
56
57
  plugins_dir : _plugins
@@ -88,7 +89,7 @@ kramdown:
88
89
 
89
90
  # Build settings
90
91
  paginate : 20
91
- paginate_path : "/notes/page:num/"
92
+ paginate_path : "/posts/page:num/"
92
93
  plugins:
93
94
  - jekyll-feed
94
95
  - jekyll-paginate
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-nocc
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carles Loriente
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-16 00:00:00.000000000 Z
10
+ date: 2025-02-17 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: jekyll
@@ -127,8 +127,6 @@ executables: []
127
127
  extensions: []
128
128
  extra_rdoc_files: []
129
129
  files:
130
- - 404.html
131
- - 503.html
132
130
  - LICENSE.txt
133
131
  - README.md
134
132
  - _config.yml
@@ -154,7 +152,6 @@ files:
154
152
  - _layouts/tags_index.html
155
153
  - _plugins/_build_tags.rb
156
154
  - _sass/_custom.scss
157
- - about.html
158
155
  - assets/css/styles.scss
159
156
  - assets/images/404.webp
160
157
  - assets/images/503.webp
@@ -256,10 +253,6 @@ files:
256
253
  - assets/vendor/nocc-bootstrap-theme/js/theme-toggler.min.js
257
254
  - assets/vendor/nocc-bootstrap-theme/manifest.json
258
255
  - assets/vendor/nocc-bootstrap-theme/package.json
259
- - contact.html
260
- - gallery.html
261
- - posts/index.html
262
- - tags.html
263
256
  homepage: https://github.com/carlesloriente/jekyll-theme-nocc/
264
257
  licenses:
265
258
  - MIT
@@ -275,9 +268,9 @@ require_paths:
275
268
  - lib
276
269
  required_ruby_version: !ruby/object:Gem::Requirement
277
270
  requirements:
278
- - - ">="
271
+ - - "~>"
279
272
  - !ruby/object:Gem::Version
280
- version: '0'
273
+ version: '3.2'
281
274
  required_rubygems_version: !ruby/object:Gem::Requirement
282
275
  requirements:
283
276
  - - ">="
data/404.html DELETED
@@ -1,42 +0,0 @@
1
- ---
2
- layout: default
3
- title: Page not found
4
- permalink: /404.html
5
- background: '/assets/images/404.webp'
6
- sitemap: false
7
- ---
8
-
9
- <main class="flex-shrink-0">
10
- <section class="masthead sechead" style="background-color:lightcoral;">
11
- <div class="container">
12
- <div class="row">
13
- <div class="mx-auto">
14
- {% assign tag = page.title %}
15
- <div class="post-heading">
16
- <h1>{{ page.title | escape }}</h1>
17
- </div>
18
- </div>
19
- </div>
20
- </div>
21
- </section>
22
- <section>
23
- <div class="container">
24
- <div class="row">
25
- <div class="col-lg-8 col-md-10 mx-auto">
26
- <div class="post-content">
27
- <p>Please check the <a href="{{ 'posts/' | relative_url }}" hreflang="{{ site.lang }}" aria-label="Posts index">index of posts</a>, or browse the <a href="{{ site.tags_dir | append: '/' | relative_url }}" hreflang="{{ site.lang }}" aria-label="tags cloud">tags cloud</a> for more content.</p>
28
- </div>
29
- </div>
30
- </div>
31
- </div>
32
- </section>
33
- <section>
34
- <div class="container">
35
- <div class="row">
36
- <div class="fixed-bottom-footer">
37
- <div style="height:400px;background-repeat:no-repeat;background-position:center;background-image: url('{{ page.background }}');"></div>
38
- </div>
39
- </div>
40
- </div>
41
- </section>
42
- </main>
data/503.html DELETED
@@ -1,42 +0,0 @@
1
- ---
2
- layout: default
3
- title: Service unavailable
4
- permalink: /503.html
5
- background: '/assets/images/503.webp'
6
- sitemap: false
7
- ---
8
-
9
- <main class="flex-shrink-0">
10
- <section class="masthead sechead" style="background-color:lightcoral;">
11
- <div class="container">
12
- <div class="row">
13
- <div class="mx-auto">
14
- {% assign tag = page.title %}
15
- <div class="post-heading">
16
- <h1>{{ page.title | escape }}</h1>
17
- </div>
18
- </div>
19
- </div>
20
- </div>
21
- </section>
22
- <section>
23
- <div class="container">
24
- <div class="row">
25
- <div class="col-lg-8 col-md-10 mx-auto">
26
- <div class="post-content">
27
- <p>Please try again in a few minutes, or check the <a href="{{ 'posts/' | relative_url }}" hreflang="{{ site.lang }}" aria-label="Posts index">index of posts</a>, or browse the <a href="{{ site.tags_dir | append: '/' | relative_url }}" hreflang="{{ site.lang }}" aria-label="tags cloud">tags cloud</a> for more content.</p>
28
- </div>
29
- </div>
30
- </div>
31
- </div>
32
- </section>
33
- <section>
34
- <div class="container">
35
- <div class="row">
36
- <div class="fixed-bottom-footer">
37
- <div style="height:400px;background-repeat:no-repeat;background-position:center;background-image: url('{{ page.background }}');"></div>
38
- </div>
39
- </div>
40
- </div>
41
- </section>
42
- </main>
data/about.html DELETED
@@ -1,12 +0,0 @@
1
- ---
2
- layout: page
3
- title: About Page
4
- permalink: /about/
5
- description: About Page
6
- categories: about me
7
- background: '/assets/images/bg-about.webp'
8
- ---
9
-
10
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ac tincidunt vitae semper quis lectus nulla at volutpat diam. Viverra nibh cras pulvinar mattis. Integer eget aliquet nibh praesent. Malesuada fames ac turpis egestas maecenas pharetra. Viverra vitae congue eu consequat ac felis donec. Dis parturient montes nascetur ridiculus mus. Fermentum leo vel orci porta non pulvinar neque laoreet suspendisse. Egestas dui id ornare arcu odio ut sem nulla pharetra. Commodo odio aenean sed adipiscing diam donec adipiscing. In nibh mauris cursus mattis. Tellus in hac habitasse platea dictumst vestibulum. Amet aliquam id diam maecenas. Ut diam quam nulla porttitor massa id neque. Integer malesuada nunc vel risus commodo viverra maecenas.</p>
11
-
12
- <p>Viverra justo nec ultrices dui. Aenean pharetra magna ac placerat vestibulum. Consectetur purus ut faucibus pulvinar elementum integer enim. Dignissim convallis aenean et tortor at. Elementum integer enim neque volutpat ac tincidunt vitae. Donec ultrices tincidunt arcu non. Dui accumsan sit amet nulla. Tincidunt praesent semper feugiat nibh sed pulvinar proin gravida hendrerit. Ornare massa eget egestas purus viverra accumsan in nisl nisi. Eros in cursus turpis massa tincidunt. Maecenas sed enim ut sem viverra. Pulvinar elementum integer enim neque volutpat ac tincidunt. Fringilla est ullamcorper eget nulla facilisi etiam dignissim diam. Tempus quam pellentesque nec nam aliquam sem. Augue ut lectus arcu bibendum. Eu facilisis sed odio morbi quis commodo odio.</p>
data/contact.html DELETED
@@ -1,39 +0,0 @@
1
- ---
2
- layout: page
3
- title: Contact
4
- permalink: /contact/
5
- description: Contact me form
6
- categories: contact me
7
- background: '/assets/images/bg-contact.webp'
8
- form: true
9
- ---
10
-
11
- <p>Want to get in touch? Send me a message!</p>
12
- <form name="sentMessage" id="contactForm" novalidate>
13
- <div class="control-group">
14
- <div class="form-group floating-label-form-group controls">
15
- <label>Name</label>
16
- <input type="text" class="form-control" placeholder="Name" id="name" required data-bs-validation-required-message="Please enter your name.">
17
- <p class="help-block text-danger"></p>
18
- </div>
19
- </div>
20
- <div class="control-group">
21
- <div class="form-group floating-label-form-group controls">
22
- <label>Email Address</label>
23
- <input type="email" class="form-control" placeholder="Email Address" id="email" required data-bs-validation-required-message="Please enter your email address.">
24
- <p class="help-block text-danger"></p>
25
- </div>
26
- </div>
27
- <div class="control-group">
28
- <div class="form-group floating-label-form-group controls">
29
- <label>Message</label>
30
- <textarea rows="5" class="form-control" placeholder="Message" id="message" required data-bs-validation-required-message="Please enter a message."></textarea>
31
- <p class="help-block text-danger"></p>
32
- </div>
33
- </div>
34
- <br>
35
- <div id="success"></div>
36
- <div class="form-group">
37
- <button type="submit" class="btn btn-primary float-end" id="sendMessageButton">Send</button>
38
- </div>
39
- </form>
data/gallery.html DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- layout: images_gallery
3
- title: Gallery
4
- description: A gallery of images used in the article header.
5
- categories: gallery images
6
- background: '/assets/images/bg-gallery.webp'
7
- ---
data/posts/index.html DELETED
@@ -1,28 +0,0 @@
1
- ---
2
- layout: posts_index
3
- title: Index of posts
4
- background: '/assets/images/bg-post.webp'
5
- ---
6
-
7
- {% for post in site.posts -%}
8
- <article class="post-preview">
9
- <a class="text-decoration-none" href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}" hreflang="{{ site.lang }}">
10
- <h2 class="post-title text-decoration-none">{{ post.title }}</h2>
11
- </a>
12
- <p class="post-meta">Posted by
13
- {% if post.author -%}
14
- <a href="{{ 'about/' | relative_url }}" hreflang="{{ site.lang }}" aria-label="{{ post.author }} author">{{ post.author }}</a>
15
- {% else %}
16
- <a href="{{ 'about/' | relative_url }}" hreflang="{{ site.lang }}" aria-label="{{ site.author }} author">{{ site.author }}</a>
17
- {%- endif %}
18
- on {{ post.date | date: '%B %d, %Y' }} &middot; {% include read_time.html content=post.content %}
19
- {%- if post.tags %}
20
- <span class="tags">
21
- {% for tag in post.tags %}
22
- <a href="{{ site.tags_dir | append: '/' | append: tag | append: '/' | relative_url }}" class="fs-6 link-info" hreflang="{{ site.lang }}" aria-label="{{ tag }}">#{{ tag }}</a>
23
- {% endfor %}
24
- </span>
25
- {%- endif -%}
26
- </p>
27
- </article>
28
- {% endfor -%}
data/tags.html DELETED
@@ -1,9 +0,0 @@
1
- ---
2
- title: Tags list
3
- layout: tags_index
4
- permalink: /tags/
5
- description: A tag cloud from posts
6
- categories: tags
7
- background: '/assets/images/bg-gallery.webp'
8
- tagsindex: true
9
- ---