Skip to content

Commit 47236a9

Browse files
committed
updatres
1 parent 9b4d766 commit 47236a9

7 files changed

Lines changed: 32 additions & 6 deletions

File tree

content/code-of-conduct/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Code of Conduct"
33
description: "PowerShell.org community and event code of conduct."
4-
layout: "single"
4+
layout: "page"
55
---
66

77
# PowerShellOrg Code of Conduct

content/community-awards/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "PowerShell Community Awards"
33
description: "Recognizing outstanding contributions to the PowerShell community."
4-
layout: "single"
4+
layout: "page"
55
---
66

77
The DevOps Collective has established a set of three awards to recognize and honor the contributions of community members who have gone above and beyond in their efforts to support and promote the PowerShell community. The awards are presented at the annual PowerShell + DevOps Global Summit. It is hoped that these awards will motivate and inspire members of the PowerShell community.

content/contact/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Contact Us"
33
description: "Get in touch with the PowerShell.org community team."
4-
layout: "single"
4+
layout: "page"
55
---
66

77
## Get in Touch

content/contributing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Contributing"
33
description: "How to contribute to PowerShell.org - blogging, ebooks, forums, and more."
4-
layout: "single"
4+
layout: "page"
55
---
66

77
You're not only welcome to contribute to PowerShell.org, everyone who helps runs it, and everyone who visits, would deeply appreciate it. This is an all-volunteer situation, so we only get as much help, assistance, and education as we're all willing to provide each other. It doesn't need to be a proud, elite few doing all the work - *everyone* has something valuable to offer.

content/privacy/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Privacy Policy"
33
description: "PowerShell.org privacy policy and data handling practices."
4-
layout: "single"
4+
layout: "page"
55
---
66

77
## Who We Are

content/terms/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Terms of Use"
33
description: "Terms and conditions for using PowerShell.org website and services."
4-
layout: "single"
4+
layout: "page"
55
---
66

77
## Terms of Use
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{{ define "main" }}
2+
3+
<!-- Page Header -->
4+
<section class="powershell-blue py-10">
5+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center text-white">
6+
<h1 class="text-4xl lg:text-5xl font-bold mb-2">
7+
{{ .Title }}
8+
</h1>
9+
{{ with .Params.description }}
10+
<p class="text-xl opacity-90 max-w-3xl mx-auto">{{ . }}</p>
11+
{{ end }}
12+
</div>
13+
</section>
14+
15+
<!-- Content Section -->
16+
<section class="py-10 bg-gray-50">
17+
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8">
18+
<div class="bg-white rounded-xl shadow-md p-8 lg:p-12">
19+
<div class="prose prose-lg max-w-none prose-blue prose-headings:font-bold prose-headings:text-gray-900 prose-a:text-blue-600 prose-a:no-underline hover:prose-a:underline prose-strong:text-gray-900 prose-code:text-purple-600 prose-code:bg-purple-50 prose-code:px-1 prose-code:py-0.5 prose-code:rounded prose-code:font-medium prose-pre:bg-gray-900 prose-pre:text-gray-100">
20+
{{ .Content }}
21+
</div>
22+
</div>
23+
</div>
24+
</section>
25+
26+
{{ end }}

0 commit comments

Comments
 (0)