excludes output files from git, moves index to blog page format from static

This commit is contained in:
Rosia E Evans 2023-09-29 18:20:29 +01:00
parent 06b45e46c9
commit 53cf3cbeab
13 changed files with 402 additions and 1 deletions

View file

@ -0,0 +1,49 @@
<html>
<head>
<link rel="stylesheet" href="Wireframe.css">
<link rel="stylesheet" href="effects.css">
</head>
<body>
<header>
<a href="index.html">
Rosia Evans
</a>
</header>
<main>
<nav>
<h1>Navigation</h1>
<li><a href=/CatTowerDefence.html>Tower defence game</a></li>
<li><a href=/index.html>Welcome!</a></li>
<li><a href=/SBSWork.html>SBS Internship</a></li>
<li><a href=/inputfile.html>Hello world!</a></li>
<li><a href=/EPQProject.html>EPQ Project</a></li>
<li><a href=/Aardvark.html>AardvarkXR</a></li>
<li><a href=/MindMap.html>Mind Map Maker</a></li>
<li><a href=/TestFullArticle.html>Example Post</a></li>
</nav>
<article><h1>Example Post</h1>
<p>This is where a basic summary of the post would go if I wanted to add one</p>
<p>Normal text would then go here wow</p>
<h2>A subheader would go here</h2>
<p>the info under the subheader would go here wow. Oh look! here comes a page break</p>
<hr>
<p>omg wow that worked! heres another:</p>
<hr>
<p>code would go here like this</p>
<pre><code>int main()
{
std::cout &lt;&lt; &quot;hello world!&quot; &lt;&lt; std::endl;
}
</code></pre>
<h2>One last thing</h2>
<p>...
moomin</p>
<p><img src="moomin.png" alt="moomin"></p>
</article>
</main>
<div>
</body>
</html>