-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dom Rodriguez <shymega@shymega.org.uk>
- Loading branch information
0 parents
commit e535dbf
Showing
10 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Blog website builder | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
concurrency: blog-build-${{ github.ref }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
- name: Build blog | ||
uses: klakegg/actions-hugo@1.0.0 | ||
with: | ||
image: ext-alpine | ||
env: production | ||
- name: Create supporting file (.nojekyll) | ||
run: sudo touch ./public/.nojekyll | ||
- name: Deploy to GitHub | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: public | ||
single-commit: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "themes/temple"] | ||
path = themes/temple | ||
url = https://github.com/shymega/blog-temple-theme.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "{{ replace .TranslationBaseName "-" " " | title }}" | ||
date: {{ .Date }} | ||
draft: true | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
baseurl = "https://www.planet-community.org" | ||
languageCode = "en-gb" | ||
title = "The Planet Community Website" | ||
theme = "temple" | ||
copyright = "Copyright © (CC-BY-SA 4.0) Planet Community Org 2023-{year}" | ||
|
||
[params] | ||
# Enables syntax highlighting | ||
highlight = true | ||
hjslangs = ["go", "elixir", "clojure", "rust", "embedded"] | ||
topmenu = "categories" | ||
|
||
# Builds a list page for each category given | ||
[taxonomies] | ||
tag = "tags" | ||
category = "categories" | ||
|
||
[author] | ||
name = "The Planet Community" | ||
github = "planet-community-org" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "About" | ||
date: "2023-12-31" | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: "Sponsoring" | ||
--- | ||
|
||
Check back soon! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[articles] | ||
read_more = "Read more" | ||
words = "words" | ||
readingtime = "minute read" | ||
share = "Share" | ||
comments = "Comments" | ||
|
||
# Linked older/newer posts at the bottom of each one | ||
[articles.linked_posts] | ||
older = "Older" | ||
newer = "Newer" | ||
|
||
[search] | ||
placeholder = "Search" | ||
|
||
[pagination] | ||
previous = "Prev" | ||
next = "Next" | ||
|
||
[profile] | ||
follow_button = "Follow" | ||
tags = "Tags" | ||
posts = "Posts" | ||
|
||
[page_not_found] | ||
title = "404 - page not found" | ||
subtitle = "The content you're looking for doesn't seem to exist." | ||
|
||
[widgets.categories] | ||
title = "Categories" | ||
|
||
[widgets.recent_articles] | ||
title = "Recents" | ||
|
||
[widgets.tag_cloud] | ||
title = "Tag cloud" | ||
|
||
[widgets.tags] | ||
title = "Tags" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.