Initial commit
|
@ -0,0 +1,13 @@
|
||||||
|
# Generated files by hugo
|
||||||
|
/public/
|
||||||
|
/resources/_gen/
|
||||||
|
/assets/jsconfig.json
|
||||||
|
hugo_stats.json
|
||||||
|
|
||||||
|
# Executable may be added to repository
|
||||||
|
hugo.exe
|
||||||
|
hugo.darwin
|
||||||
|
hugo.linux
|
||||||
|
|
||||||
|
# Temporary lock file while building
|
||||||
|
/.hugo_build.lock
|
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/PaperMod"]
|
||||||
|
path = themes/PaperMod
|
||||||
|
url = https://github.com/adityatelange/hugo-PaperMod.git
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
date: {{ .Date }}
|
||||||
|
draft: true
|
||||||
|
---
|
|
@ -0,0 +1,6 @@
|
||||||
|
---
|
||||||
|
title: "Archive"
|
||||||
|
layout: "archives"
|
||||||
|
url: "/archive/"
|
||||||
|
summary: "archive"
|
||||||
|
---
|
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
title: 'Welcome to Stacks!'
|
||||||
|
date: 2024-02-12T21:15:13-05:00
|
||||||
|
draft: true
|
||||||
|
author: 'Ategon'
|
||||||
|
categories:
|
||||||
|
- Stacks
|
||||||
|
---
|
||||||
|
Stacks is the official blog for Programming.Dev! This is a place where we will share news, announcements, upgrades, etc. relating to any instances we host such as programming.dev (and the new instance coming soon).
|
||||||
|
|
||||||
|
There should be many new releases coming out and being announced here over the next month as things that have been getting made start finishing up!
|
||||||
|
|
||||||
|
An rss feed is available for inserting into your rss reader at http://stacks.programming.dev/index.xml
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: "Search" # in any language you want
|
||||||
|
layout: "search" # necessary for search
|
||||||
|
description: "Search the site for something"
|
||||||
|
placeholder: "enter text here..."
|
||||||
|
sumary: "search"
|
||||||
|
---
|
||||||
|
|
|
@ -0,0 +1,101 @@
|
||||||
|
# Config
|
||||||
|
baseURL: https://stacks.programming.dev/
|
||||||
|
languageCode: en-us
|
||||||
|
title: Stacks
|
||||||
|
theme: ["PaperMod"]
|
||||||
|
copyright: "© 2024 Programming.Dev"
|
||||||
|
defaultTheme: auto
|
||||||
|
contentDir: 'content'
|
||||||
|
outputs:
|
||||||
|
home:
|
||||||
|
- HTML
|
||||||
|
- RSS
|
||||||
|
- JSON
|
||||||
|
|
||||||
|
# Menu
|
||||||
|
menu:
|
||||||
|
main:
|
||||||
|
- identifier: categories
|
||||||
|
name: Categories
|
||||||
|
url: /categories
|
||||||
|
weight: 40
|
||||||
|
- identifier: tags
|
||||||
|
name: Tags
|
||||||
|
url: /tags
|
||||||
|
weight: 30
|
||||||
|
- identifier: archives
|
||||||
|
name: Archives
|
||||||
|
url: /archive
|
||||||
|
weight: 10
|
||||||
|
- identifier: search
|
||||||
|
name: Search
|
||||||
|
url: /search
|
||||||
|
weight: 20
|
||||||
|
|
||||||
|
params:
|
||||||
|
env: 'production'
|
||||||
|
|
||||||
|
# General
|
||||||
|
ShowRssButtonInSectionTermList: true
|
||||||
|
ShowFullTextinRSS: true
|
||||||
|
|
||||||
|
# Posts
|
||||||
|
showReadingTime: true
|
||||||
|
showToc: true
|
||||||
|
showBreadCrumbs: true
|
||||||
|
showCodeCopyButtons: true
|
||||||
|
showPostNavLinks: true
|
||||||
|
enableEmoji: true
|
||||||
|
|
||||||
|
# Misc
|
||||||
|
images: ["logo.png"]
|
||||||
|
|
||||||
|
# Label
|
||||||
|
label:
|
||||||
|
text: "Stacks"
|
||||||
|
icon: "/logo.png"
|
||||||
|
iconHeight: 35
|
||||||
|
|
||||||
|
# Home Page
|
||||||
|
homeInfoParams:
|
||||||
|
Title: 📚 Stacks
|
||||||
|
Content: Welcome to the official blog for Programming.Dev! Here we post things relating to our instances including announcements, release notes, community showcases, and more.
|
||||||
|
socialIcons:
|
||||||
|
- name: "GitHub"
|
||||||
|
url: "https://github.com/programming-dot-dev"
|
||||||
|
- name: "Discord"
|
||||||
|
url: "https://discord.gg/SnUk3bKkNC"
|
||||||
|
- name: "Matrix"
|
||||||
|
url: "https://matrix.to/#/#p.d:matrix.org"
|
||||||
|
- name: "Links"
|
||||||
|
url: "https://me.programming.dev"
|
||||||
|
|
||||||
|
# Menu
|
||||||
|
menu:
|
||||||
|
main:
|
||||||
|
- identifier: categories
|
||||||
|
name: categories
|
||||||
|
url: /categories
|
||||||
|
weight: 10
|
||||||
|
- identifier: tags
|
||||||
|
name: tags
|
||||||
|
url: /tags
|
||||||
|
weight: 20
|
||||||
|
- identifier: archives
|
||||||
|
name: archives
|
||||||
|
url: /archives
|
||||||
|
weight: 30
|
||||||
|
- identifier: search
|
||||||
|
name: Search
|
||||||
|
url: /search
|
||||||
|
weight: 25
|
||||||
|
|
||||||
|
# Search
|
||||||
|
fuseOpts:
|
||||||
|
isCaseSensitive: false
|
||||||
|
shouldSort: true
|
||||||
|
location: 0
|
||||||
|
distance: 1000
|
||||||
|
threshold: 0.4
|
||||||
|
minMatchCharLength: 0
|
||||||
|
keys: ["title", "permalink", "summary", "content"]
|
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 6.0 KiB |
After Width: | Height: | Size: 413 B |
After Width: | Height: | Size: 844 B |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 54 KiB |
|
@ -0,0 +1 @@
|
||||||
|
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 944ddc3c7e75b1287f15523902d10da0562dd2ac
|