This commit is contained in:
2025-01-04 00:34:03 +01:00
parent 41829408dc
commit 0ca14bbc19
18111 changed files with 1871397 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<footer class="sheet-footer journal-footer flexrow">
<button type="submit">
<i class="fas fa-feather-alt"></i> {{localize "JOURNAL.Submit"}}
</button>
</footer>

View File

@@ -0,0 +1,22 @@
<header class="journal-header">
<input class="title" name="name" type="text" value="{{data.name}}" placeholder="{{localize 'JOURNALENTRYPAGE.PageTitle'}}"/>
<aside class="page-level flexcol">
<div class="heading-level flexrow">
<label class="flex0" data-tooltip="{{localize 'JOURNALENTRYPAGE.HeadingLevel'}}">
<i class="fa-solid fa-list-tree"></i>
</label>
<select name="title.level">
{{selectOptions headingLevels selected=data.title.level}}
</select>
</div>
<div class="show-title">
<label class="checkbox">
{{localize "JOURNALENTRYPAGE.ShowTitle"}}
<input type="checkbox" name="title.show" {{checked data.title.show}}>
</label>
</div>
</aside>
</header>