diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/META-INF/resources/cms2/base.css | 4 | ||||
| -rw-r--r-- | src/main/resources/templates/benki/bookmarks/bookmarkList.html | 33 | 
2 files changed, 37 insertions, 0 deletions
| diff --git a/src/main/resources/META-INF/resources/cms2/base.css b/src/main/resources/META-INF/resources/cms2/base.css index 6e3b1b6..e09262f 100644 --- a/src/main/resources/META-INF/resources/cms2/base.css +++ b/src/main/resources/META-INF/resources/cms2/base.css @@ -123,4 +123,8 @@ body > footer {    padding: 0.5em 0.5em;    border-top: lightgray solid 1px; +} + +h1.bookmark-title { +  font-size: 1em;  }
\ No newline at end of file diff --git a/src/main/resources/templates/benki/bookmarks/bookmarkList.html b/src/main/resources/templates/benki/bookmarks/bookmarkList.html new file mode 100644 index 0000000..4ad97fd --- /dev/null +++ b/src/main/resources/templates/benki/bookmarks/bookmarkList.html @@ -0,0 +1,33 @@ +{@java.util.List<eu.mulk.mulkcms2.benki.bookmarks.Bookmark> bookmarks} + +{#include base.html} + +{#title}Benki Bookmarks{/title} +{#siteSection}Bookmarks{/siteSection} +{#bookmarksClass}this-page{/bookmarksClass} + +{#head}{/head} + +{#body} + +{#for bookmark in bookmarks} +  {#with bookmark} +    <article class="bookmark"> +      <header> +        <a href="{uri}"><h1 class="bookmark-title">{title}</h1></a> +        <div> +          <time datetime="{date.htmlDateTime}">{date.humanDateTime}</time> +          <span class="bookmark-owner">{owner.firstName} {owner.lastName}</span> +        </div> +      </header> + +      <section class="bookmark-description"> +        {description} +      </section> +    </article> +  {/with} +{/for} + +{/body} + +{/include} | 
