Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[submodule "themes/codinfox-zola"]
path = themes/codinfox-zola
url = https://github.com/seankearney/codinfox-zola.git
branch = seankearney.com
[submodule "themes/zola-devin"]
path = themes/zola-devin
url = https://github.com/seankearney/zola-devin.git
21 changes: 0 additions & 21 deletions author.toml

This file was deleted.

28 changes: 20 additions & 8 deletions config.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# The URL the site will be built for
base_url = "https://seankearney.com"

theme = "codinfox-zola"
# The site title and description; used in feeds by default
title = "Sean Kearney"
description = "A modern blog built with Zola"

theme = "zola-devin"

# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
compile_sass = false

# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
Expand Down Expand Up @@ -33,10 +37,18 @@ generate_robots_txt = true
highlight_code = true

[extra]

# Blog owner configuration
blog_owner_name = "Sean Kearney"
blog_owner_image = "./images/hero.jpg"
blog_owner_description = "A seasoned technology leader, serial entrepreneur, enthusiastic coder, and sporadic blogger. Find me at"

# Social media links
social_links = [
{ name = "GitHub", url = "https://github.com/seankearney" },
{ name = "Twitter", url = "https://twitter.com/seankearney" },
{ name = "LinkedIn", url = "https://www.linkedin.com/in/skearney" },
{ name = "StackOverflow", url = "https://stackoverflow.com/users/255194/sean-kearney" }
]

###
# codinfox-zola theme variables
google_analytics_token = "UA-74650-7"

# show or not the reading time based on https://help.medium.com/hc/en-us/articles/214991667-Read-time
read_time = true
google_analytics_gtag_id = "UA-74650-7"
8 changes: 0 additions & 8 deletions content/_index.md

This file was deleted.

5 changes: 1 addition & 4 deletions content/archive.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
+++
template = "archive.html"
date = 2024-12-12
title = "Archives"
description = "Blog archive"

template = "archive.html"
sort_by = "date"
+++
60 changes: 2 additions & 58 deletions content/post/_index.md
Original file line number Diff line number Diff line change
@@ -1,64 +1,8 @@
+++
title = "Blog"

description = "Blog posts"

# Used to sort pages by "date", "weight" or "none". See below for more information.
title = "Blog Posts"
sort_by = "date"

# Used by the parent section to order its subsections.
# Lower values have higher priority.
#weight = 0

# Template to use to render this section page.
template = "post-list.html"

# The given template is applied to ALL pages below the section, recursively.
# If you have several nested sections, each with a page_template set, the page
# will always use the closest to itself.
# However, a page's own `template` variable will always have priority.
# Not set by default.
page_template = "post.html"

# This sets the number of pages to be displayed per paginated page.
# No pagination will happen if this isn't set or if the value is 0.
paginate_by = 10

# If set, this will be the path used by the paginated page. The page number will be appended after this path.
# The default is page/1.
paginate_path = "page"

# This determines whether to insert a link for each header like the ones you can see on this site if you hover over
# a header.
# The default template can be overridden by creating an `anchor-link.html` file in the `templates` directory.
# This value can be "left", "right" or "none".
#insert_anchor_links = "none"

# If set to "true", the section pages will be in the search index. This is only used if
# `build_search_index` is set to "true" in the Zola configuration file.
#in_search_index = true

# If set to "true", the section homepage is rendered.
# Useful when the section is used to organize pages (not used directly).
render = false

# This determines whether to redirect when a user lands on the section. Defaults to not being set.
# Useful for the same reason as `render` but when you don't want a 404 when
# landing on the root section page.
# Example: redirect_to = "documentation/content/overview"
#redirect_to =

# If set to "true", the section will pass its pages on to the parent section. Defaults to `false`.
# Useful when the section shouldn't split up the parent section, like
# sections for each year under a posts section.
transparent = true

# Use aliases if you are moving content but want to redirect previous URLs to the
# current one. This takes an array of paths, not URLs.
#aliases = []

# Your own data.
#[extra]
+++

This is the page listing the blog posts sorted by date.
+++
19 changes: 0 additions & 19 deletions nav.toml

This file was deleted.

4 changes: 1 addition & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ My personal blog! Since 2006, I've been sharing my insights and experiences on s
## Technology Stack

- **Static Site Generator**: [Zola](https://www.getzola.org/)
- **Theme**: codinfox-zola [Modified](https://github.com/seankearney/codinfox-zola)
- **Theme**: [zola-devin](https://github.com/seankearney/zola-devin)
- **Hosting**: GitHub Pages
- **Content Format:** Markdown with TOML front matter

Expand All @@ -30,11 +30,9 @@ zola serve

```
content/
_index.md # Home page
about.md # About page
archive.md # Archives page
post/ # Blog posts
_index.md
[year-month-day-slug]/
index.md # Post content
images # Post images
Expand Down
17 changes: 0 additions & 17 deletions templates/archive.html

This file was deleted.

1 change: 0 additions & 1 deletion themes/codinfox-zola
Submodule codinfox-zola deleted from 60cb2d
1 change: 1 addition & 0 deletions themes/zola-devin
Submodule zola-devin added at e10431