refactor: move all HTTP-Website code into www subdirectory
Some checks failed
/ phplint (push) Failing after 4s
Some checks failed
/ phplint (push) Failing after 4s
This commit is contained in:
parent
502ddd1ad9
commit
5bcba0b689
25 changed files with 33 additions and 67 deletions
31
www/templates/index.html
Normal file
31
www/templates/index.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Lucidragons' Fire</title>
|
||||
<link rel="stylesheet" href="/dergstyle.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="big_title">The dergsite</h1>
|
||||
<div id="title_separator"></div>
|
||||
|
||||
<ul>
|
||||
<li><a href="/about"> About </a></li>
|
||||
<li><a href="/blog"> Blog </a></li>
|
||||
<li><a href="/projects"> Projects </a></li>
|
||||
<li><a href="/artwork"> Artworks </a></li>
|
||||
</ul>
|
||||
|
||||
<div id="main_content_wrapper">
|
||||
{% block content %}<h3>Soon there shall be content!</h3>{% endblock %}
|
||||
</div>
|
||||
|
||||
<div id="sidebar-wrapper">
|
||||
{%block sidebar %}
|
||||
<ul>
|
||||
<li> Test 1 </li>
|
||||
</ul>
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue