Adds beginnings of BlogPageBuilder and associated classes

This commit is contained in:
Rosia E Evans 2023-09-20 09:09:51 +01:00
parent 65aefe46ce
commit 1506f661c9
114 changed files with 4740 additions and 518 deletions

41
Resources/output.html Normal file
View file

@ -0,0 +1,41 @@
<html>
<head>
<link rel="stylesheet" href="Wireframe.css">
</head>
<body>
<header>
Rosia Evans
</header>
<main>
<nav>
<h1>
Navigation
</h1>
</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="file:///home/rosia/Pictures/Moomins/moomin-meadow.png" alt="moomin"></p>
</article>
</main>
<div>
</body>
</html>