Skip to content

Commit 0343f6a

Browse files
committed
Initial commit
0 parents  commit 0343f6a

2 files changed

Lines changed: 112 additions & 0 deletions

File tree

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

hugo.toml

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
baseURL: 'https://powershell.org'
2+
languageCode: 'en-us'
3+
title: 'PowerShell.org - Welcome Automaters!'
4+
theme: 'powershell-community'
5+
6+
# Enable RSS feeds
7+
enableRSSFeed: true
8+
9+
# Pagination
10+
paginate: 10
11+
paginatePath: 'page'
12+
13+
# Syntax highlighting
14+
markup:
15+
goldmark:
16+
renderer:
17+
unsafe: true
18+
highlight:
19+
style: github
20+
lineNos: true
21+
codeFences: true
22+
23+
# Taxonomies
24+
taxonomies:
25+
category: categories
26+
tag: tags
27+
author: authors
28+
29+
# Menu configuration
30+
menu:
31+
main:
32+
- name: "Home"
33+
url: "/"
34+
weight: 10
35+
- name: "Podcast"
36+
url: "/podcast/"
37+
weight: 20
38+
- name: "Summit"
39+
url: "/summit/"
40+
weight: 30
41+
- name: "Community"
42+
url: "/community/"
43+
weight: 40
44+
- name: "Learning"
45+
url: "/learning/"
46+
weight: 50
47+
- name: "Forums"
48+
url: "https://forums.powershell.org"
49+
weight: 60
50+
51+
# Site parameters
52+
params:
53+
description: "PowerShell.org is the community hub for PowerShell enthusiasts, automators, and professionals. Join us for podcasts, summits, learning resources, and vibrant community discussions."
54+
author: "PowerShell.org Community"
55+
56+
# Social links
57+
social:
58+
twitter: "https://twitter.com/powershell_org"
59+
youtube: "https://youtube.com/PowerScriptingLive"
60+
github: "https://github.com/powershell"
61+
slack: "https://aka.ms/psslack"
62+
63+
# Featured content
64+
hero:
65+
title: "Welcome Automaters!"
66+
subtitle: "Your hub for PowerShell community, learning, and automation excellence"
67+
cta_text: "Join the Community"
68+
cta_url: "/community/"
69+
70+
# Podcast settings
71+
podcast:
72+
title: "The PowerShell Podcast"
73+
description: "Building your career with PowerShell"
74+
feed_url: "https://powershellpodcast.podbean.com/feed/"
75+
76+
# Summit settings
77+
summit:
78+
year: "2025"
79+
title: "PowerShell + DevOps Global Summit"
80+
dates: "April 28 - May 1, 2025"
81+
location: "Bellevue, WA"
82+
registration_url: "#"
83+
84+
# Analytics (GitHub Pages compatible)
85+
google_analytics: ""
86+
87+
# Output formats
88+
outputs:
89+
home:
90+
- HTML
91+
- RSS
92+
page:
93+
- HTML
94+
section:
95+
- HTML
96+
- RSS
97+
98+
# Related content
99+
related:
100+
includeNewer: true
101+
indices:
102+
- name: keywords
103+
weight: 100
104+
- name: tags
105+
weight: 80
106+
- name: categories
107+
weight: 60

0 commit comments

Comments
 (0)