summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--beauty.css2
-rwxr-xr-xbeauty.scss6
-rw-r--r--collection/main.html32
-rwxr-xr-xmain.html2
-rwxr-xr-xpage.scss3
-rw-r--r--photography/main.html32
-rw-r--r--robots.txt4
-rw-r--r--sitemap.xml4
-rw-r--r--test.html5
-rw-r--r--videography/main.html32
10 files changed, 111 insertions, 11 deletions
diff --git a/beauty.css b/beauty.css
index 3d97503..0b6acb6 100644
--- a/beauty.css
+++ b/beauty.css
@@ -127,7 +127,7 @@ body {
width: 90%;
max-width: auto;
margin: 2em auto;
- font: 18px "Prompt";
+ font: 19px "Prompt";
letter-spacing: -1px;
background-image: url("resources/bg.jpg");
background-repeat: no-repeat;
diff --git a/beauty.scss b/beauty.scss
index c226454..9ee11ba 100755
--- a/beauty.scss
+++ b/beauty.scss
@@ -1,7 +1,7 @@
-/// Rather than writing an asslong stylesheet for every page, the parent style is defined here and then just reads a pagestle SCSS sheet
+/// Import stylesheet for pages
@use 'page';
-// And here's the stylesheet for all used fonts:
+// Import fonts
@use 'fonts';
// The SCSS stylesheet for my good old website twoexem.com
@@ -20,7 +20,7 @@ body {
width: 90%;
max-width: auto;
margin: 2em auto;
- font: 18px 'Prompt';
+ font: 19px 'Prompt';
letter-spacing: -1px;
background-image: url("resources/bg.jpg");
background-repeat: no-repeat;
diff --git a/collection/main.html b/collection/main.html
new file mode 100644
index 0000000..73d111b
--- /dev/null
+++ b/collection/main.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="description" content="Collection">
+ <link rel="stylesheet" href="/beauty.css">
+ <link rel="icon" href="/icon.png" type="image/png">
+
+ <title>
+ Twoexem
+ </title>
+ </head>
+
+ <body>
+ <header>
+ <a href=/ style="display:block;width:48px;margin-left:auto;margin-right:auto">
+ <img src=/resources/icons/go-home.svg>
+ </a>
+ <h1>My collection</h1>
+ </header>
+ <hr>
+ <main>
+ <div class=center_img>
+ <img src="/resources/collection/teaser.jpg" alt="A picture of a Sony CCD-SP5E camcorder.">
+ </div>
+ <br>
+ <div class="text">
+ <h3><i>Coming soon...</i></h3>
+ </div>
+
+ </body>
+</html>
diff --git a/main.html b/main.html
index 75599c5..1292d33 100755
--- a/main.html
+++ b/main.html
@@ -87,7 +87,7 @@
<div class="license">
<div>
<!--<a rel="license" href="licenses" target=_blank>Images and videos on this website are licensed under the CC BY-SA 4.0 License. The full website source code (HTML and CSS files) is licensed under the MIT license. Fonts have their own licenses. Click this button to see all used licenses and the source code.-->
- <a rel="license" href="licenses">Licenses & Legal</a>
+ <a rel="license" href="licenses">Licenses & legal</a>
</div>
</div>
<br>
diff --git a/page.scss b/page.scss
index b278fc4..41fbb71 100755
--- a/page.scss
+++ b/page.scss
@@ -1,4 +1,4 @@
-// Page stylesheet for my main start page
+// Page stylesheet for the individual pages
// The license is included in the file LICENSE.txt
// If you did not receive a copy of the license with this file, you may download it under https://mit-license.org/
// Copyright © 2022 Milan Mišić (eMail: fridolin.411@web.de)
@@ -152,3 +152,4 @@
.title {
font-size: 18px;
}
+
diff --git a/photography/main.html b/photography/main.html
new file mode 100644
index 0000000..deae7a2
--- /dev/null
+++ b/photography/main.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="description" content="Photography">
+ <link rel="stylesheet" href="/beauty.css">
+ <link rel="icon" href="/icon.png" type="image/png">
+
+ <title>
+ Twoexem
+ </title>
+ </head>
+
+ <body>
+ <header>
+ <a href=/ style="display:block;width:48px;margin-left:auto;margin-right:auto">
+ <img src=/resources/icons/go-home.svg>
+ </a>
+ <h1>Photography</h1>
+ </header>
+ <hr>
+ <main>
+ <div class=center_img>
+ <img src="/resources/photography/teaser.jpg">
+ </div>
+ <br>
+ <div class="text">
+ <h3><i>Coming soon...</i></h3>
+ </div>
+
+ </body>
+</html>
diff --git a/robots.txt b/robots.txt
index 145667b..6d78f46 100644
--- a/robots.txt
+++ b/robots.txt
@@ -1,10 +1,8 @@
User-agent: *
Disallow: /note.txt
Disallow: /template.html
-Disallow: /404.html
Disallow: /resources
-Disallow: /resources/temo/
-Disallow: /testing
+Disallow: /test.html
User-agent: nsa
Disallow: *
diff --git a/sitemap.xml b/sitemap.xml
index 04746bb..29cb1ce 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -1,5 +1,5 @@
-<?xml version=“1.0″ encoding=“UTF-8″?>
-<urlset xmlns=“http://www.sitemaps.org/schemas/sitemap/0.9″
+<?xml version="1.0" encoding="UTF-8"?>
+<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.sitemaps.org/schemas/sitemap/0.9 https://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<url>
diff --git a/test.html b/test.html
index c4a00bb..e89ddb0 100644
--- a/test.html
+++ b/test.html
@@ -47,3 +47,8 @@
</div>
<br>
This works really well woooowowoyeah
+
+ <br><br>
+ </main>
+ </body>
+</html>
diff --git a/videography/main.html b/videography/main.html
new file mode 100644
index 0000000..9b1b928
--- /dev/null
+++ b/videography/main.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="description" content="Collection">
+ <link rel="stylesheet" href="/beauty.css">
+ <link rel="icon" href="/icon.png" type="image/png">
+
+ <title>
+ Twoexem
+ </title>
+ </head>
+
+ <body>
+ <header>
+ <a href=/ style="display:block;width:48px;margin-left:auto;margin-right:auto">
+ <img src=/resources/icons/go-home.svg>
+ </a>
+ <h1>Videography</h1>
+ </header>
+ <hr>
+ <main>
+ <div class=center_img>
+ <img src="/resources/videography/teaser.jpg" alt="A close-up picture of a JVC GY-HD200 camcorder.">
+ </div>
+ <br>
+ <div class="text">
+ <h3><i>Coming soon...</i></h3>
+ </div>
+
+ </body>
+</html>