Show sourcecode
The following files exists in this folder. Click to view.
comments.php
dbconnection.php
exercises/
exercises.php
img/
incl/
index-no-include.php
index.php
source.php
style/
viewsource.php
exercises.php
41 lines UTF-8 Windows (CRLF)
<?php
include("incl/config.php");
$title = "Webbserv1: Övningar";
$pageId = "exercises";
$pageStyle = '
ul#exer {
list-style-type:none;
}
ul#exer a {
margin:-40px;
}
';
include("incl/header.php");
?>
<!-- sidans huvudinnehåll -->
<div id="content">
<aside><p></p><p></p>
<!-- Menyn med övningar -->
<h3>Mina övningar</h3>
<a href="exercises/index.php">Övningar</a>
</aside>
<article class="justify border">
<!-- Sidans/Dokumentets huvudsakliga innehåll -->
<h1>Övningar i kursen</h1>
<p>Här är en samlingssida för mina övningar i de olika kursmomenten.</p>
<p>Källkoden till mina övningar och övriga delar till sidan,
<a href="viewsource.php?dir=exercises">hittar du i denna katalogen</a>.</p>
</article>
</div>
<?php include("incl/footer.php"); ?>