Skip to content

Commit 05a8b2d

Browse files
committed
updates
1 parent 0343f6a commit 05a8b2d

40 files changed

Lines changed: 5454 additions & 4 deletions

File tree

.hugo_build.lock

Whitespace-only changes.

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# PowerShell.org Hugo Site
2+
3+
This is the new Hugo-based website for PowerShell.org.
4+
5+
## Local Development
6+
7+
```bash
8+
hugo server -D
9+
```
10+
11+
## Build
12+
13+
```bash
14+
hugo --gc --minify
15+
```

content/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Welcome Automaters!"
3+
description: "PowerShell.org is the community hub for PowerShell enthusiasts, automaters, and professionals."
4+
---
5+
6+
PowerShell.org serves as the central hub for the PowerShell community worldwide.

content/community/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "PowerShell Community"
3+
description: "Connect with PowerShell enthusiasts worldwide"
4+
---
5+
6+
Join our vibrant community of PowerShell professionals and enthusiasts.

content/learning/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Learning PowerShell"
3+
description: "Resources for learning PowerShell from beginner to advanced levels."
4+
---
5+
6+
Whether you're just starting or looking to advance your skills, we have resources for every level.

content/podcast/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "The PowerShell Podcast"
3+
description: "Building your career with PowerShell"
4+
---
5+
6+
The PowerShell Podcast is a weekly show about building your career with PowerShell.

content/summit/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "PowerShell + DevOps Global Summit"
3+
description: "The premier event for PowerShell and DevOps professionals."
4+
---
5+
6+
Join us for the largest gathering of PowerShell and DevOps professionals.

hugo.toml renamed to hugo.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ theme: 'powershell-community'
66
# Enable RSS feeds
77
enableRSSFeed: true
88

9-
# Pagination
10-
paginate: 10
11-
paginatePath: 'page'
9+
# Updated pagination syntax for Hugo v0.128+
10+
pagination:
11+
pagerSize: 10
12+
path: 'page'
1213

1314
# Syntax highlighting
1415
markup:
@@ -50,7 +51,7 @@ menu:
5051

5152
# Site parameters
5253
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+
description: "PowerShell.org is the community hub for PowerShell enthusiasts, automaters, and professionals. Join us for podcasts, summits, learning resources, and vibrant community discussions."
5455
author: "PowerShell.org Community"
5556

5657
# Social links

package.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "powershell-org-hugo",
3+
"version": "1.0.0",
4+
"description": "PowerShell.org Hugo static site",
5+
"scripts": {
6+
"dev": "hugo server -D --disableFastRender",
7+
"build": "hugo --gc --minify",
8+
"preview": "hugo server --environment production"
9+
},
10+
"devDependencies": {
11+
"hugo-extended": "^0.121.0"
12+
},
13+
"hugo": {
14+
"version": "0.121.0"
15+
}
16+
}

0 commit comments

Comments
 (0)