diff options
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; |
