diff options
| author | horus | 2024-01-16 10:44:35 +0100 |
|---|---|---|
| committer | horus | 2024-01-16 10:44:35 +0100 |
| commit | e6fc8b7adf14a4f3391dcc16028d8db53e108ad8 (patch) | |
| tree | 9a70087caa3a19db4c850da0c4e3c0b22d7353ae /public | |
| parent | e431f223673f153d774241df470101c9036b7eb5 (diff) | |
| download | moehring-e6fc8b7adf14a4f3391dcc16028d8db53e108ad8.tar.gz | |
.
Diffstat (limited to 'public')
| -rw-r--r-- | public/css/app.css | 8 | ||||
| -rw-r--r-- | public/index.php | 8 |
2 files changed, 15 insertions, 1 deletions
diff --git a/public/css/app.css b/public/css/app.css new file mode 100644 index 0000000..a26e7d1 --- /dev/null +++ b/public/css/app.css @@ -0,0 +1,8 @@ + +.mastodon { + display: inline-block; + font-size: inherit; + height: 1em; + overflow: visible; + vertical-align: -0.125em; +} diff --git a/public/index.php b/public/index.php index 957bed4..0460889 100644 --- a/public/index.php +++ b/public/index.php @@ -10,11 +10,17 @@ case("/"): echo $twig->render('index.html'); break; case("/about/"): + echo $twig->render('about2.html'); + break; +case("/about2/"): echo $twig->render('about.html'); break; -case("/projects/"): +case("/projects2/"): echo $twig->render('projects.html'); break; +case("/projects/"): + echo $twig->render('projects_all.html'); + break; case("/feeds/"): echo $twig->render('feeds.html'); break; |
