rework for external portal application

This commit is contained in:
2021-07-17 18:00:22 +02:00
parent e6c85df8a3
commit d275116e8e
40 changed files with 71 additions and 1172 deletions

View File

@@ -1,24 +0,0 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body class="crt">
<style>
.meta {
font-size: .7rem;
font-weight: normal;
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="post-list">
<p class="title">{{page.title}}</p>
{{content}}
</main>
<!-- footer -->
{% include footer.html %}
</body>
</html>

View File

@@ -1,23 +0,0 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<div class="screen">
<!-- effects -->
{% include screen-effects.html %}
<div class="screen-content">
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="about">
{{content}}
</main>
<!-- footer -->
{% include footer.html %}
</div>
</div>
</body>
</html>

View File

@@ -7,11 +7,9 @@
{% include screen-effects.html %}
<div class="screen-content">
<!-- page content -->
<div class="welcome">
{{content}}
<!-- nav -->
{% include nav.html %}
</div>
{% include header.html %}
{% include portal.html %}
{% include footer.html %}
</div>
</div>
</body>

View File

@@ -1,23 +0,0 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<div class="screen">
<!-- effects -->
{% include screen-effects.html %}
<div class="screen-content">
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="post-list">
{{content}}
</main>
<!-- footer -->
{% include footer.html %}
</div>
</div>
</body>
</html>

View File

@@ -1,32 +0,0 @@
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
<div class="screen">
<!-- effects -->
{% include screen-effects.html %}
<div class="screen-content">
<style>
.meta {
font-size: .7rem;
font-weight: normal;
}
</style>
<!-- header -->
{% include header.html %}
<!-- nav -->
{% include nav.html %}
<!-- page content -->
<main class="content">
<p class="title">
{{page.title}} <span class="meta">{{ "Written By" | downcase }} {{page.author | downcase}}</span>
</p>
{{content}}
</main>
<!-- footer -->
{% include footer.html %}
</div>
</div>
</body>
</html>