Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CONTEXT.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,8 @@ whose archived episodes also live under `/podcast/`. A distinct podcast from **T
PowerShell Podcast** despite sharing the section — it has its own hosts and is not
covered by the Podbean feed or the sync. Episodes are told apart by their audio host:
Podbean (`mcdn.podbean.com`) means The PowerShell Podcast; libsyn means PowerScripting.

**PowerShell Summit**:
The event whose canonical public website is `https://powershellsummit.org/`.
PowerShell.org refers visitors to that site rather than presenting a separate
event-information destination.
7 changes: 0 additions & 7 deletions content/summit/_index.md

This file was deleted.

3 changes: 0 additions & 3 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ menu:
- name: "Podcast"
url: "/podcast/"
weight: 20
- name: "Summit"
url: "/summit/"
weight: 30
- name: "Articles"
url: "/articles/"
weight: 40
Expand Down
7 changes: 7 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
command = "hugo --minify"
publish = "public"

[[redirects]]
from = "/summit"
to = "https://powershellsummit.org/"
status = 301
force = true

Comment on lines +6 to +11

[build.environment]
HUGO_VERSION = "0.155.1"
HUGO_ENVIRONMENT = "production"
Expand Down
15 changes: 15 additions & 0 deletions static/summit/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex">
<meta http-equiv="refresh" content="0; url=https://powershellsummit.org/">
<link rel="canonical" href="https://powershellsummit.org/">
<title>PowerShell Summit</title>
</head>
<body>
<p>The PowerShell Summit site has moved to <a href="https://powershellsummit.org/">powershellsummit.org</a>.</p>
<script>window.location.replace("https://powershellsummit.org/");</script>
</body>
</html>
106 changes: 0 additions & 106 deletions themes/powershell-community/layouts/_default/summit.html

This file was deleted.

2 changes: 1 addition & 1 deletion themes/powershell-community/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h1 class="text-4xl lg:text-6xl font-black mb-6 leading-tight">
</p>

<div class="space-y-4 sm:space-y-0 sm:space-x-4 sm:flex">
<a href="/summit/"
<a href="{{ .Site.Params.summit.registration_url }}"
class="inline-block bg-blue-400 text-blue-900 px-8 py-3 rounded-lg font-bold hover:bg-blue-300 transition-all duration-200 transform hover:scale-105">
<i class="fas fa-ticket-alt mr-2"></i>Get Summit Tickets
</a>
Expand Down
2 changes: 1 addition & 1 deletion themes/powershell-community/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h3 class="text-lg font-semibold text-white">PowerShell.org</h3>
<h3 class="text-lg font-semibold text-white mb-4">Quick Links</h3>
<ul class="space-y-2 text-sm">
<li><a href="/podcast/" class="text-gray-400 hover:text-white transition-colors duration-200">Podcast</a></li>
<li><a href="/summit/" class="text-gray-400 hover:text-white transition-colors duration-200">Summit</a></li>
<li><a href="{{ .Site.Params.summit.registration_url }}" class="text-gray-400 hover:text-white transition-colors duration-200">Summit</a></li>
<li><a href="/learning/" class="text-gray-400 hover:text-white transition-colors duration-200">Learning Resources</a></li>
<li><a href="/community/" class="text-gray-400 hover:text-white transition-colors duration-200">Community</a></li>
<li><a href="{{ .Site.Params.social.forums }}" target="_blank" rel="noopener" class="text-gray-400 hover:text-white transition-colors duration-200">Forums</a></li>
Expand Down
Loading