-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separated out the main and directory pages
- Loading branch information
Showing
4 changed files
with
126 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title id="title">Directory</title> | ||
<meta property="og:title" content="Directory" /> | ||
<meta property="og:site_name" content="Doom 64 Compendium" /> | ||
<meta property="og:description" content="Doom 64 Compendium documents the Doom 64 engine, its ports, and how to build content for them." /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://www.doom64.com/" /> | ||
<meta property="og:image" content="https://www.doom64.com/d64c.png" /> | ||
<meta property="og:image:width" content="1200" /> | ||
<meta property="og:image:height" content="630" /> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
<script src="scripts.js" type="text/JavaScript"></script> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link rel="icon" type="image/x-icon" href="favicon.svg" /> | ||
</head> | ||
<body> | ||
<div id="navigation"></div> | ||
|
||
<div id="content"> | ||
|
||
<h1>Directory</h1> | ||
<p>Here is a list of all of the pages currently hosted on the Doom 64 Compendium.</p> | ||
|
||
<div class="sidestack"> | ||
|
||
<div><ul> | ||
<li><a href="index.html">Main Page</a> | ||
<ul> | ||
<li><a href="future.html">Future Additions</a></li> | ||
</ul></li> | ||
<li><a href="directory.html">Directory</a></li> | ||
<li><a href="engines/index.html">Engines</a> | ||
<ul> | ||
<li><a href="engines/portlist.html">Engines and Adaptations List</a></li> | ||
<li><a href="engines/gamemods.html">Gameplay Mods</a></li> | ||
<li><a href="engines/n64compiling.html">Nintendo 64 Compiling</a></li> | ||
<li><a href="engines/passwords/index.html">Passwords</a></li> | ||
</ul></li> | ||
<li><a href="structures/index.html">Structures</a> | ||
<ul> | ||
<li><a href="structures/animdefs.html">ANIMDEFS Lump</a></li> | ||
<li><a href="structures/mapinfo.html">MAPINFO Lump</a></li> | ||
<li><a href="structures/skydefs.html">SKYDEFS Lump</a></li> | ||
</ul></li> | ||
<li><a href="graphics/index.html">Graphics</a> | ||
<ul> | ||
<li><a href="graphics/textures/index.html">Textures</a></li> | ||
<li><a href="graphics/animations/index.html">Animated Textures</a></li> | ||
<li><a href="graphics/sprites/index.html">Sprites</a></li> | ||
<li><a href="graphics/skies/index.html">Sky Graphics</a></li> | ||
</ul></li> | ||
</ul></div> | ||
|
||
<div><ul> | ||
<li><a href="contributors/index.html">Contributors</a></li> | ||
<li><a href="maps/index.html">Maps</a> | ||
<ul> | ||
<li><a href="maps/maplist.html">Custom Map List</a></li> | ||
<li><a href="maps/db64/index.html">Doom Builder 64 Setup Guide</a></li> | ||
<li><a href="maps/actions.html">Actions</a></li> | ||
<li><a href="maps/lineflags.html">Linedef Flags</a></li> | ||
<li><a href="maps/sectorspecials.html">Sector Specials</a></li> | ||
<li><a href="maps/sectorflags.html">Sector Flags</a></li> | ||
<li><a href="maps/things.html">Things</a></li> | ||
<li><a href="maps/macros/index.html">Macros</a> | ||
<ul> | ||
<li><a href="maps/macros/macrotutorial.html">Macro Tutorial</a></li> | ||
</ul></li> | ||
<li><a href="maps/switches/index.html">Switches</a></li> | ||
</ul></li> | ||
<li><a href="audio/index.html">Audio</a> | ||
<ul> | ||
<li><a href="audio/music/index.html">Music</a></li> | ||
<li><a href="audio/sounds/index.html">Sounds</a></li> | ||
</ul></li> | ||
<li><a href="links/index.html">Links</a></li> | ||
</ul></div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<div id="footer"></div> | ||
<script> | ||
layout(""); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters