summaryrefslogtreecommitdiff
path: root/src/application/views/template_navigation.php
diff options
context:
space:
mode:
authorJonas Kohl2024-10-17 10:56:01 +0200
committerJonas Kohl2024-10-17 10:56:01 +0200
commitfe0f414dc0211a4014581dc03fcfd514ed7ed02d (patch)
treecd86fc00cd9b7a97eabb9668e0a39e2b4b3e5357 /src/application/views/template_navigation.php
parente0e89b9fdbf301e0ead944636023947a67aca57d (diff)
Transition templating to Twig
Diffstat (limited to 'src/application/views/template_navigation.php')
-rw-r--r--src/application/views/template_navigation.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/application/views/template_navigation.php b/src/application/views/template_navigation.php
deleted file mode 100644
index ff0752b..0000000
--- a/src/application/views/template_navigation.php
+++ /dev/null
@@ -1,9 +0,0 @@
-<?php
-if ($user) {
- _view("nav_logged_in", [
- "user" => $user,
- "isViewingOwnProfile" => $isViewingOwnProfile ?? false,
- ]);
-} else {
- _view("nav_guest");
-}