summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile12
-rw-r--r--home/index.md19
-rw-r--r--keys/ssh.md6
-rw-r--r--posts/website_created.md21
-rw-r--r--software/software.md3
-rw-r--r--src/index.html48
-rw-r--r--src/keys/ssh.html31
-rw-r--r--src/posts/website_created.html59
-rw-r--r--src/software/software.html26
-rw-r--r--src/wiki/wiki.html28
-rw-r--r--style.css (renamed from src/style.css)3
-rw-r--r--wiki/wiki.md3
12 files changed, 65 insertions, 194 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3a87e23
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+SRC = $(shell find . -name '*.md')
+HTML = $(SRC:.md=.html)
+
+all: $(HTML)
+
+%.html: %.md
+ sh build-page $< > $@
+
+clean:
+ rm -f $(HTML)
+
+.PHONY: clean
diff --git a/home/index.md b/home/index.md
new file mode 100644
index 0000000..5428ec3
--- /dev/null
+++ b/home/index.md
@@ -0,0 +1,19 @@
+<!-- Title: My personal Website -->
+
+Welcome to my site
+
+posts
+-----
+<table>
+ <tr><td><time class="key">2024-06-09</time></td><td><a class="post value" href="posts/website_created.html">Website Created!</a></td></tr>
+</table>
+
+
+links and contact info
+----------------------
+<table>
+ <tr><td class="key">email</td><td><a class="value" href="mailto:suleyman@farajli.net">suleyman@farajli.net</a></td></tr>
+ <tr><td class="key">ssh </td><td><a class="value" href="keys/ssh.html">Public key</a></td></tr>
+ <tr><td class="key">github</td><td><a class="value" href="https://github.com/sfarajli">sfarajli</a></td></tr>
+</table>
+<small class="footnote">* and it is worth mentioning that I don't have a LinkedIn (or any social media) account.</small>
diff --git a/keys/ssh.md b/keys/ssh.md
new file mode 100644
index 0000000..f2b51b4
--- /dev/null
+++ b/keys/ssh.md
@@ -0,0 +1,6 @@
+<!-- Title: SSH key -->
+
+Public ssh key
+--------------
+
+ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKI5nJep3/j6NyFZJxfmwwo4veK2vmSBuVydYZYbx0RN teon@st
diff --git a/posts/website_created.md b/posts/website_created.md
new file mode 100644
index 0000000..b6647a3
--- /dev/null
+++ b/posts/website_created.md
@@ -0,0 +1,21 @@
+<!-- Title: I have a website! -->
+
+I have a website!
+-----------------
+
+As of June 13th 2024, the best website on the internet has officially been created.
+
+This site is not made by using one of those fancy and bloated site generators
+or any garbage like that, it was created, quite surprisingly, writing HTML and
+CSS, like it is supposed to be, tough it is a little inefficient, error-prone
+and a pain writing HTML and adding boilerplate code to each file,
+thus it's quite probable that I shall write a small program to do that automatically
+for me in the future, but that program wouldn't be the same as bloated site generators,
+in fact, it'd basically be the same as manual way of writing HTML.
+Here are some of the advantages of my website compared to a lot of contemporary ones.
+
+* Doesn't fill your entire ram
+* Doesn't have ads, tracker or unnecessary JavaScript
+* Loads <strong class="color1">Fast</strong>!
+
+As of now, there isn't that much of content here, but I will probably add a lot more.
diff --git a/software/software.md b/software/software.md
new file mode 100644
index 0000000..ff0f7d3
--- /dev/null
+++ b/software/software.md
@@ -0,0 +1,3 @@
+<!-- Title: Software -->
+
+Still working on it...
diff --git a/src/index.html b/src/index.html
deleted file mode 100644
index b4dbcd6..0000000
--- a/src/index.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel='stylesheet' type='text/css' href="style.css">
- <title>Suleyman Farajli's website</title>
-</head>
-
-<body>
- <a id="header-link" href="index.html">Suleyman Farajli</a>
-
- <hr class="separator">
-
- <div class="menu">
- <a class="menu_item" href="index.html"><u>Home</u>/</a>
- <a class="menu_item" href="software/software.html">Software/</a>
- <a class="menu_item" href="wiki/wiki.html">Wiki/</a>
- <a class="menu_item right" href="https://git.farajli.net">Git</a>
- </div>
-
-
- <p>
- Welcome to my site.
- </p>
-
- <h2>posts</h2>
-
- <table>
- <tr><td><time class="key">2024-06-09</time></td><td><a class="post value" href="posts/website_created.html">Website Created!</a></td></tr>
- </table>
-
-
- <h3>links and contact info</h3>
-
- <table>
- <tr><td class="key">email</td><td><a class="value" href="mailto:suleyman@farajli.net">suleyman@farajli.net</a></td></tr>
- <tr><td class="key">ssh </td><td><a class="value" href="keys/ssh.html">Public key</a></td></tr>
- <tr><td class="key">github</td><td><a class="value" href="https://github.com/sfarajli">sfarajli</a></td></tr>
- </table>
-
-
- <small class="footnote">* and it is worth mentioning that I don't have a LinkedIn (or any social media) account.</small>
-
- <p id="copyleft"><br>copyleft (c) 2024 Suleyman Farajli</p>
-
-</body>
-</html>
diff --git a/src/keys/ssh.html b/src/keys/ssh.html
deleted file mode 100644
index 330b067..0000000
--- a/src/keys/ssh.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel='stylesheet' type='text/css' href="../style.css">
- <title> Public ssh key </title>
-</head>
-
-<body>
- <a id="header-link" href="../index.hmtl">Suleyman Farajli</a>
-
- <hr class="separator">
-
- <div class="menu">
- <a class="menu_item" href="../index.html">Home/</a>
- <a class="menu_item" href="../software/software.html">Software/</a>
- <a class="menu_item" href="../wiki/wiki.html">Wiki/</a>
- <a class="menu_item right" href="https://git.farajli.net">Git</a>
- </div>
-
-
- <h2>Public ssh key</h2>
- <p>
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKI5nJep3/j6NyFZJxfmwwo4veK2vmSBuVydYZYbx0RN teon@st
- </p>
-
- <p id="copyleft"><br>copyleft (c) 2024 Suleyman Farajli</p>
-
-</body>
-</html>
diff --git a/src/posts/website_created.html b/src/posts/website_created.html
deleted file mode 100644
index 50b201e..0000000
--- a/src/posts/website_created.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel='stylesheet' type='text/css' href="../style.css">
- <title>Website Created!</title>
-</head>
-
-<body>
- <a id="header-link" href="../index.html">Suleyman Farajli</a>
-
- <hr class="separator">
-
- <div class="menu">
- <a class="menu_item" href="../index.html">Home/</a>
- <a class="menu_item" href="../software/software.html">Software/</a>
- <a class="menu_item" href="../wiki/wiki.html">Wiki/</a>
- <a class="menu_item right" href="https://git.farajli.net">Git</a>
- </div>
- <h2>I have a website!</h2>
-
- <p>As of June 13th 2024, the best website on the internet
- has officially been created.
- <br>
- <br>
- This site is not made
- by using one of those fancy and bloated site generators or any garbage like that,
- it was created, quite surprisingly, writing HTML and CSS, like it is supposed to
- be, tough it is a little inefficient, error-prone and a pain
- writing HTML and adding boilerplate
- code to each file, thus it's quite probable that I shall write a small program to
- do that automatically for me in the future, but that program wouldn't be the same as bloated site
- generators, in fact, it'd basically be the same as manual way of writing HTML.
-
-
- <br>
-
- Here are some of the advantages of my website compared to a lot of contemporary ones.
-
- <ul>
- <li>Doesn't fill your entire ram</li>
- <li>Doesn't have ads, tracker or unnecessary JavaScript </li>
- <li>Loads <span class="color1"><strong>Fast</strong></span>!</li>
- </ul>
-
-
- <p>
- As of now, there isn't that much of content here, but I
- will probably add a lot more.
- </p>
-
-
-
-
- <p id="copyleft"><br>copyleft (c) 2024 Suleyman Farajli</p>
-
-</body>
-</html>
diff --git a/src/software/software.html b/src/software/software.html
deleted file mode 100644
index 3cbae89..0000000
--- a/src/software/software.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel='stylesheet' type='text/css' href="../style.css">
- <title>Software</title>
-</head>
-
-<body>
- <a id="header-link" href="../index.html">Suleyman Farajli</a>
-
- <hr class="separator">
-
- <div class="menu">
- <a class="menu_item" href="../index.html">Home/</a>
- <a class="menu_item" href="software.html"><u>Software</u>/</a>
- <a class="menu_item" href="../wiki/wiki.html">Wiki/</a>
- <a class="menu_item right" href="https://git.farajli.net">Git</a>
- </div>
-
- <p>Still working on it...</p>
- <p id="copyleft"><br>copyleft (c) 2024 Suleyman Farajli</p>
-
-</body>
-</html>
diff --git a/src/wiki/wiki.html b/src/wiki/wiki.html
deleted file mode 100644
index 0dad521..0000000
--- a/src/wiki/wiki.html
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel='stylesheet' type='text/css' href="../style.css">
- <title>Wiki</title>
-</head>
-
-<body>
- <a id="header-link" href="../index.html">Suleyman Farajli</a>
-
- <hr class="separator">
-
- <div class="menu">
- <a class="menu_item" href="../index.html">Home/</a>
- <a class="menu_item" href="../software/software.html">Software/</a>
- <a class="menu_item" href="wiki.html"><u>Wiki</u>/</a>
- <a class="menu_item right" href="https://git.farajli.net">Git</a>
- </div>
-
-
- <p>Empty for now...</p>
-
- <p id="copyleft"><br>copyleft (c) 2024 Suleyman Farajli</p>
-
-</body>
-</html>
diff --git a/src/style.css b/style.css
index 89dbb02..56a3108 100644
--- a/src/style.css
+++ b/style.css
@@ -1,5 +1,4 @@
-/* CSS for Suleyman Farajli's Website */
-/* 10th June 2024, Thei0n */
+/* 10th June 2024, Designer: Suleyman Farajli */
body {
font: 15px monospace;
diff --git a/wiki/wiki.md b/wiki/wiki.md
new file mode 100644
index 0000000..b627632
--- /dev/null
+++ b/wiki/wiki.md
@@ -0,0 +1,3 @@
+<!-- Title: Wiki -->
+
+Empth for now...