diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-02-13 05:00:54 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2020-02-13 05:00:54 +0100 |
commit | fc427e26493d4bd070c09e5dbc348a1355c00e38 (patch) | |
tree | df04f0b158373549c6cc333f0de834f3e2be9f80 /src/main/resources/templates | |
parent | 6991257cd67631efae78e141b8ae7794129483c1 (diff) |
Add /bookmarks/new endpoint.
Change-Id: I903dbf5f918e1478fff82e5ebf6f3e3e2766572d
Diffstat (limited to 'src/main/resources/templates')
-rw-r--r-- | src/main/resources/templates/benki/bookmarks/newBookmark.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/resources/templates/benki/bookmarks/newBookmark.html b/src/main/resources/templates/benki/bookmarks/newBookmark.html new file mode 100644 index 0000000..cb3147d --- /dev/null +++ b/src/main/resources/templates/benki/bookmarks/newBookmark.html @@ -0,0 +1,26 @@ +{@java.util.List<eu.mulk.mulkcms2.benki.bookmarks.Bookmark> bookmarks} +{@java.lang.Boolean authenticated} + +{#include base.html} + +{#title}Benki Bookmarks{/title} +{#siteSection}Bookmarks{/siteSection} +{#bookmarksClass}this-page{/bookmarksClass} + +{#head}{/head} + +{#body} + +<script type="module" src="/bookmarks/MlkBookmarkSubmissionForm.js" defer></script> +<script type="module" src="/bookmarks/newBookmark.js" defer></script> + +<mlk-bookmark-submission-form + id="bookmark-submission-form" + uri="{uri}" + title="{title}" + description="{description}"> +</mlk-bookmark-submission-form> + +{/body} + +{/include} |