aboutsummaryrefslogtreecommitdiffstats
path: root/templates/navigation.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-07 10:13:36 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-07 10:13:36 +0000
commit7bc5e8bee74bb0a8b879a38f69748d40558a5e0b (patch)
tree2a12cbf3363fcf2989bccdf01b655f35c52f792f /templates/navigation.html
parentMerge pull request #1 from discord-python/feature/gunicorn-config (diff)
Static files; basic templates
Diffstat (limited to 'templates/navigation.html')
-rw-r--r--templates/navigation.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/navigation.html b/templates/navigation.html
new file mode 100644
index 00000000..d1f1f363
--- /dev/null
+++ b/templates/navigation.html
@@ -0,0 +1,18 @@
+<div class="uk-container uk-container-expand uk-section-secondary">
+ <nav data-uk-navbar class="uk-navbar-container uk-navbar-transparent">
+ <div class="uk-navbar-left">
+ <a href="/" class="uk-navbar-item uk-logo">
+ <img src="/static/logos/logo_discord.png" style="height: 50px;"/>
+ </a>
+ </div>
+ <div class="uk-navbar-right">
+ <ul class="uk-navbar-nav">
+ {% if current_page == "index" %}
+ <li class="uk-active"><a href="/">Home</a></li>
+ {% else %}
+ <li><a href="/">Home</a></li>
+ {% endif %}
+ </ul>
+ </div>
+ </nav>
+</div> \ No newline at end of file