Skip to content

Commit 8aefa40

Browse files
committed
jekyll - initial commit
1 parent d4ff820 commit 8aefa40

3 files changed

Lines changed: 61 additions & 0 deletions

File tree

Gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source 'https://rubygems.org'
2+
gem 'jekyll'
3+
gem 'jekyll-remote-theme'
4+
gem "jekyll-feed"
5+
gem 'jekyll-paginate'
6+
gem 'jekyll-seo-tag'
7+
gem 'jekyll-sitemap'
8+
gem "github-pages", group: :jekyll_plugins
9+

_config.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Site information
2+
# Jekyll theme - Architect
3+
title: The Home Lab Chronicle
4+
email: mihai@ngnpath.com
5+
description: Transforming your passion into expertise
6+
baseurl: ""
7+
url: ""
8+
repository: example/example
9+
10+
11+
12+
# Site settings
13+
permalink: /:title/
14+
markdown: kramdown
15+
paginate: 5
16+
paginate_path: "/:num/"
17+
date_format: "%b %-d, %Y"
18+
remote_theme: pages-themes/architect@v0.2.0
19+
20+
plugins:
21+
- jekyll-remote-theme
22+
- jekyll-feed
23+
- jekyll-paginate
24+
- jekyll-seo-tag
25+
- jekyll-sitemap

index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: default
3+
title: Home
4+
---
5+
6+
<h1>Welcome to My Jekyll Blog</h1>
7+
8+
<p>This site is styled using the <strong>Architect</strong> theme and served via a Docker container inside a Kubernetes cluster.</p>
9+
10+
<hr>
11+
12+
<h2>About This Site</h2>
13+
14+
<p>
15+
This Jekyll site demonstrates how to:
16+
</p>
17+
<ul>
18+
<li>Use <code>remote_theme</code> from GitHub</li>
19+
<li>Build and run Jekyll inside a Docker container</li>
20+
<li>Deploy it on a Kubernetes cluster</li>
21+
</ul>
22+
23+
<hr>
24+
25+
<p>
26+
To modify this page, edit <code>index.html</code> in your project root.
27+
</p>

0 commit comments

Comments
 (0)