diff --git a/templates/_nav.html b/templates/_nav.html index 78c9246..8c16cae 100644 --- a/templates/_nav.html +++ b/templates/_nav.html @@ -30,6 +30,7 @@
⚙️ Settings + 📚 Bookmarks {% if current_user.is_admin %} 👨‍💼 Admin Panel {% endif %} diff --git a/templates/bookmarks.html b/templates/bookmarks.html new file mode 100644 index 0000000..3fac042 --- /dev/null +++ b/templates/bookmarks.html @@ -0,0 +1,272 @@ +{% extends "base.html" %} + +{% block title %}Bookmarks - {{ APP_NAME }}{% endblock %} + +{% block content %} +{% include '_nav.html' %} + +
+
+

📚 Your Bookmarks

+

Posts you've saved for later reading

+
+ +
+
+
Loading your bookmarks...
+
+
+ + + +
+ + + + +{% endblock %} \ No newline at end of file