Skip to content

Commit 5218a8a

Browse files
committed
new theme
1 parent 0a2db49 commit 5218a8a

File tree

9 files changed

+111
-28
lines changed

9 files changed

+111
-28
lines changed

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
source "https://rubygems.org"
22

33
gem "jekyll", "~> 4.3"
4-
gem "minima", "~> 2.5"
4+
gem "jekyll-theme-clean-blog"
5+
gem "webrick"
56

67
group :jekyll_plugins do
78
gem "jekyll-feed", "~> 0.12"
89
gem "jekyll-seo-tag", "~> 2.8"
10+
gem "jekyll-paginate"
911
end
1012

1113
# Windows and JRuby does not include zoneinfo files

_config.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,43 @@ author: Your Name
55
email: your-email@example.com
66

77
# URL settings (update with your GitHub username)
8-
baseurl: "/blog" # repository name
8+
baseurl: "/blog"
99
url: "https://mattbuot.github.io"
1010

1111
# Build settings
12-
theme: minima
12+
theme: jekyll-theme-clean-blog
1313
plugins:
1414
- jekyll-feed
1515
- jekyll-seo-tag
16+
- jekyll-paginate
1617

17-
# Minima theme settings
18-
minima:
19-
skin: auto # auto switches between light/dark based on user preference
18+
# Pagination
19+
paginate: 5
20+
paginate_path: "/posts/page:num/"
2021

2122
# Markdown settings
2223
markdown: kramdown
2324
highlighter: rouge
2425

2526
kramdown:
2627
syntax_highlighter: rouge
27-
input: GFM # GitHub Flavored Markdown
28+
input: GFM
2829

2930
# Permalink structure
3031
permalink: /:year/:month/:day/:title/
3132

33+
# Social profiles (optional - uncomment and fill in as needed)
34+
# twitter_username: your_twitter
35+
# facebook_username: your_facebook
36+
# github_username: your_github
37+
# linkedin_username: your_linkedin
38+
# instagram_username: your_instagram
39+
3240
# Exclude from build
3341
exclude:
3442
- Gemfile
3543
- Gemfile.lock
3644
- README.md
3745
- LICENSE
46+
- node_modules
47+
- vendor

_posts/2026-01-13-welcome-to-the-blog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
layout: post
33
title: "Welcome to the Blog"
4+
subtitle: "A space for AI research insights and ML theory"
45
date: 2026-01-13
5-
categories: general
6+
background: '/img/posts/welcome.jpg'
67
---
78

89
Welcome to my AI research blog! This is a space where I'll share thoughts on machine learning theory, deep learning, and the latest developments in AI research.

about.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: page
3+
title: About
4+
description: About this AI research blog
5+
background: '/img/about-bg.jpg'
6+
---
7+
8+
<p>This blog explores topics in AI research and machine learning theory.</p>
9+
10+
<h2>Topics</h2>
11+
<ul>
12+
<li>Deep learning foundations</li>
13+
<li>Optimization theory</li>
14+
<li>Generalization and learning theory</li>
15+
<li>Neural network architectures</li>
16+
<li>Emerging research directions</li>
17+
</ul>
18+
19+
<p>Feel free to reach out via email for discussions.</p>

about.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

contact.html

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
layout: page
3+
title: Contact
4+
description: Get in touch
5+
background: '/img/contact-bg.jpg'
6+
---
7+
8+
<p>Have questions or want to discuss AI research? Feel free to reach out!</p>
9+
10+
<form name="sentMessage" id="contactForm" novalidate>
11+
<div class="control-group">
12+
<div class="form-group floating-label-form-group controls">
13+
<label>Name</label>
14+
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
15+
<p class="help-block text-danger"></p>
16+
</div>
17+
</div>
18+
<div class="control-group">
19+
<div class="form-group floating-label-form-group controls">
20+
<label>Email Address</label>
21+
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
22+
<p class="help-block text-danger"></p>
23+
</div>
24+
</div>
25+
<div class="control-group">
26+
<div class="form-group col-xs-12 floating-label-form-group controls">
27+
<label>Phone Number</label>
28+
<input type="tel" class="form-control" placeholder="Phone Number" id="phone" required data-validation-required-message="Please enter your phone number.">
29+
<p class="help-block text-danger"></p>
30+
</div>
31+
</div>
32+
<div class="control-group">
33+
<div class="form-group floating-label-form-group controls">
34+
<label>Message</label>
35+
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
36+
<p class="help-block text-danger"></p>
37+
</div>
38+
</div>
39+
<br>
40+
<div id="success"></div>
41+
<div class="form-group">
42+
<button type="submit" class="btn btn-primary" id="sendMessageButton">Send</button>
43+
</div>
44+
</form>

index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
layout: home
3+
title: AI Research Blog
4+
description: Thoughts on AI research and ML theory
5+
background: '/img/home-bg.jpg'
6+
---

index.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

posts/index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: page
3+
title: Posts
4+
description: All blog posts
5+
background: '/img/home-bg.jpg'
6+
---
7+
8+
{% for post in site.posts %}
9+
<article class="post-preview">
10+
<a href="{{ post.url | prepend: site.baseurl | replace: '//', '/' }}">
11+
<h2 class="post-title">{{ post.title }}</h2>
12+
{% if post.subtitle %}
13+
<h3 class="post-subtitle">{{ post.subtitle }}</h3>
14+
{% endif %}
15+
</a>
16+
<p class="post-meta">
17+
Posted on {{ post.date | date: "%B %-d, %Y" }}
18+
</p>
19+
</article>
20+
<hr>
21+
{% endfor %}

0 commit comments

Comments
 (0)