website

my website
git clone git://git.evenfri.duckdns.org/website.git
Log | Files | Refs | LICENSE

commit 28c222f75b682d2008daafa7f295ce5f912ba45d
parent a71e8fe0c1d4683325b3f3249ae54001789224c0
Author: iffiloy <iffilopy@gmail.com>
Date:   Fri, 14 Aug 2026 01:25:10 +0800

add blog, news, thanks html.pages, add new philosophy

Diffstat:
Ablog.html | 24++++++++++++++++++++++++
Mindex.html | 5++++-
Anews.html | 34++++++++++++++++++++++++++++++++++
Mphilosophy.html | 3++-
Athanks.html | 35+++++++++++++++++++++++++++++++++++
5 files changed, 99 insertions(+), 2 deletions(-)

diff --git a/blog.html b/blog.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <link rel="stylesheet" href="style.css"> + <link rel="icon" type="image/png" href="favicon.png"> + <title>evenfri - blog</title> + </head> + + <body> + <div class="container"> + <h1><a href="index.html">evenfri</a></h1> + + <div class="nav"> + &lt; <a href="index.html">home</a> &gt; + </div> + + <p>but nobody come...</p> + + </div> + </body> +</html> diff --git a/index.html b/index.html @@ -18,9 +18,12 @@ <a href="http://git.evenfri.duckdns.org/">src</a> | <a href="about.html">about</a> | <a href="contributing.html">contributing</a> | + <a href="blog.html">blog</a> | + <a href="news.html">news</a> | <a href="philosophy.html">philosophy</a> | <a href="license.html">license</a> | - <a href="links.html">links</a> + <a href="links.html">links</a> | + <a href="thanks.html">thanks</a> &gt; </div> diff --git a/news.html b/news.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <link rel="stylesheet" href="style.css"> + <link rel="icon" type="image/png" href="favicon.png"> + <title>evenfri - news</title> + </head> + + <body> + <div class="container"> + <h1><a href="index.html">evenfri</a></h1> + + <div class="nav"> + &lt; <a href="index.html">home</a> &gt; + </div> + + but nobody come...<br> + + <h3>suggestion</h3> + <dl> + <dt>message form:</dt> + <dt>-------------</dt> + <dt>To:</dt> + <dd><strong>evenfri256@gmail.com</strong></dd> + <dt>Subject:</dt> + <dd>[NEWS SUGGESTION] by NICKNAME</dd> + </dl> + + </div> + </body> +</html> diff --git a/philosophy.html b/philosophy.html @@ -24,7 +24,8 @@ <blockquote> "do one thing, but do it well"<br> "suckless"<br> - "keep it simple, stupid" + "keep it simple, stupid"<br> + "no use ai" </blockquote> </div> </body> diff --git a/thanks.html b/thanks.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="ie=edge"> + <link rel="stylesheet" href="style.css"> + <link rel="icon" type="image/png" href="favicon.png"> + <title>evenfri - thanks</title> + </head> + + <body> + <div class="container"> + <h1><a href="index.html">evenfri</a></h1> + + <div class="nav"> + &lt; <a href="index.html">home</a> &gt; + </div> + + + but nobody come...<br> + + <h3>send</h3> + <dl> + <dt>message form:</dt> + <dt>-------------</dt> + <dt>To:</dt> + <dd><strong>evenfri256@gmail.com</strong></dd> + <dt>Subject</dt> + <dd>[THANK] by NICKNAME</dd> + </dl> + + </div> + </body> +</html>