Skip to content

Commit

Permalink
Updated some things.
Browse files Browse the repository at this point in the history
  • Loading branch information
conmecha committed Sep 21, 2024
1 parent 368c6b0 commit 6a79c59
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
3 changes: 1 addition & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ github_username: conmecha
github: conmecha

# Build settings
theme: jekyll-theme-hacker
# remote_theme: pages-themes/[email protected]
remote_theme: pages-themes/[email protected]
plugins:
- jekyll-feed
- jekyll-remote-theme
Expand Down
11 changes: 11 additions & 0 deletions _posts/2024-09-22-second-post.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: post
title: "First post about jekyll."
date: 2024-09-21 13:29:00 +0300
categories: jekyll update
---
This is the first post ever I created on Jekyll. Here is a code example;

{% highlight ruby %}
puts "Hello world!"
{% endhighlight %}
14 changes: 11 additions & 3 deletions index.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults

layout: default
---
<p>{{ site.description }}</p>

<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<span>{{ post.date | date: "%B %d, %Y" }}</span>
</li>
{% endfor %}
</ul>

0 comments on commit 6a79c59

Please sign in to comment.