Enhance SEO and accessibility by updating meta tags and titles in index and lists pages; add sitemap.xml and sitemap.html for better site navigation
This commit is contained in:
+5
-3
@@ -3,12 +3,14 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>GD fedl</title>
|
||||
<meta name="description" content="FEDL - Browse ranked demons, check demon list rules, play demon games, and submit demon runs. Your hub for the Geometry Dash demon list.">
|
||||
<meta name="keywords" content="demon list, ranked demons, geometry dash, demon ranking, challenge demon">
|
||||
<title>FEDL - Ranked Demon List Hub for Geometry Dash</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body data-page="index">
|
||||
<header>
|
||||
<h1>GD fedl</h1>
|
||||
<h1>FEDL - Ranked Demon List</h1>
|
||||
<nav>
|
||||
<a href="guess.html">Guess Game</a>
|
||||
<a href="players.html">Players</a>
|
||||
@@ -23,7 +25,7 @@
|
||||
<section class="home-hero">
|
||||
<div class="home-copy panel">
|
||||
<p class="hero-kicker">FEDL Hub</p>
|
||||
<h2>Track the list, learn the rules, and jump straight into the chaos.</h2>
|
||||
<h2>Track ranked demons, learn submission rules, and master the challenge.</h2>
|
||||
<p class="hero-text">FEDL is your quick home base for browsing ranked demons, checking submission rules, spinning a roulette challenge, and keeping up with the list without digging through a bunch of scattered pages.</p>
|
||||
|
||||
<div class="hero-actions">
|
||||
|
||||
+4
-2
@@ -3,12 +3,14 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<title>Lists — GD fedl</title>
|
||||
<meta name="description" content="Browse the complete FEDL ranked demon list. Search and filter demons by rank, difficulty, and placement. Find your next challenge demon today.">
|
||||
<meta name="keywords" content="demon list, ranked demons, demon ranking, geometry dash demons, hardest demons">
|
||||
<title>Complete Ranked Demon List - FEDL Rankings</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body data-page="lists">
|
||||
<header>
|
||||
<h1>fedl</h1>
|
||||
<h1>FEDL Ranked Demon List</h1>
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="guess.html">Guess Game</a>
|
||||
|
||||
@@ -0,0 +1,93 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
||||
<meta name="description" content="Complete sitemap of all FEDL pages and resources.">
|
||||
<title>Sitemap — FEDL</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<style>
|
||||
.sitemap-content {
|
||||
max-width: 800px;
|
||||
}
|
||||
.sitemap-section {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
.sitemap-section h2 {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 1rem;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
.sitemap-section ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
.sitemap-section li {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
.sitemap-section a {
|
||||
color: #00d4ff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.sitemap-section a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body data-page="sitemap">
|
||||
<header>
|
||||
<h1>FEDL - Ranked Demon List</h1>
|
||||
<nav>
|
||||
<a href="index.html">Home</a>
|
||||
<a href="guess.html">Guess Game</a>
|
||||
<a href="players.html">Players</a>
|
||||
<a href="lists.html">Lists</a>
|
||||
<a href="run.html">Submit Run</a>
|
||||
<a href="rules.html">Rules</a>
|
||||
<a href="roulette.html">Roulette</a>
|
||||
<a href="admelist.html">Admin</a>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="sitemap-content">
|
||||
<h1>Sitemap</h1>
|
||||
<p>Welcome to the FEDL sitemap. Below you'll find all the pages and resources available on our site.</p>
|
||||
|
||||
<section class="sitemap-section">
|
||||
<h2>Main Pages</h2>
|
||||
<ul>
|
||||
<li><a href="index.html">Home</a> - FEDL Hub and overview</li>
|
||||
<li><a href="lists.html">Rankings</a> - Browse the complete ranked demon list</li>
|
||||
<li><a href="rules.html">Rules</a> - Submission rules and guidelines</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="sitemap-section">
|
||||
<h2>Games & Tools</h2>
|
||||
<ul>
|
||||
<li><a href="guess.html">Guess Game</a> - Test your demon knowledge</li>
|
||||
<li><a href="roulette.html">Roulette</a> - Spin for a random challenge demon</li>
|
||||
<li><a href="players.html">Players</a> - Browse player profiles and stats</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="sitemap-section">
|
||||
<h2>Submissions</h2>
|
||||
<ul>
|
||||
<li><a href="run.html">Submit Run</a> - Submit your demon completions</li>
|
||||
<li><a href="admelist.html">Admin</a> - List management tools</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section class="sitemap-section">
|
||||
<h2>Additional Resources</h2>
|
||||
<ul>
|
||||
<li><a href="README.md">About FEDL</a> - Learn more about the project</li>
|
||||
<li><a href="https://github.com/your-repo">GitHub Repository</a> - View the source code</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<hr style="margin: 2rem 0; opacity: 0.3;">
|
||||
<p style="font-size: 0.9rem; color: #999;">Last updated: April 2, 2026</p>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
+51
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://fedl.site/</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>1.0</priority>
|
||||
<changefreq>weekly</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fedl.site/lists.html</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>0.95</priority>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fedl.site/guess.html</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>0.8</priority>
|
||||
<changefreq>weekly</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fedl.site/players.html</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>0.8</priority>
|
||||
<changefreq>weekly</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fedl.site/run.html</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>0.85</priority>
|
||||
<changefreq>weekly</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fedl.site/rules.html</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>0.8</priority>
|
||||
<changefreq>monthly</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fedl.site/roulette.html</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>0.75</priority>
|
||||
<changefreq>weekly</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://fedl.site/admelist.html</loc>
|
||||
<lastmod>2026-04-02</lastmod>
|
||||
<priority>0.7</priority>
|
||||
<changefreq>monthly</changefreq>
|
||||
</url>
|
||||
</urlset>
|
||||
Reference in New Issue
Block a user