Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions app.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from render_engine import Site, Page

navigation = [
{"text": "Home", "url": "/", "fa": "fa fa-home fa-fw"},
{"text": "Blog", "url": "/blog/", "fa": "fa fa-newspaper fa-fw"},
{"text": "About Us", "url": "/about/", "fa": "fa fa-info-circle fa-fw"},
{"text": "Events", "url": "/events/", "fa": "fa fa-calendar fa-fw"},
{"text": "Community", "url": "/community/", "fa": "fa fa-users fa-fw"},
{"text": "Support Us", "url": "/support/", "fa": "fa-solid fa-money-check-dollar"},
{"text": "Home", "url": "/index.html", "fa": "fa fa-home fa-fw"},
{"text": "Blog", "url": "/blog.html", "fa": "fa fa-newspaper fa-fw"},
{"text": "About Us", "url": "/about.html", "fa": "fa fa-info-circle fa-fw"},
{"text": "Events", "url": "/events.html", "fa": "fa fa-calendar fa-fw"},
{"text": "Community", "url": "/community.html", "fa": "fa fa-users fa-fw"},
{"text": "Support Us", "url": "/support.html", "fa": "fa-solid fa-money-check-dollar"},
]

app = Site()
Expand All @@ -18,7 +18,6 @@
@app.page
class Index(Page):
template = "index.html"
current = "nav-current"
content_path = "index.html"


Expand Down