mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-06 04:44:16 +02:00
Added an app to work on campaign frame things in
This commit is contained in:
parent
bae9006f64
commit
044ecd9d55
12 changed files with 187 additions and 1 deletions
41
templates/campaignFrames/campaign-frames.hbs
Normal file
41
templates/campaignFrames/campaign-frames.hbs
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
<div>
|
||||
{{!-- <nav class='feature-tab tabs' data-group='frames'>
|
||||
{{#each tabs as |tab|}}
|
||||
<button class='{{tab.id}} {{tab.cssClass}}' data-action='tab' data-group='{{tab.group}}' data-tab='{{tab.id}}' {{disabled tab.disabled}}>
|
||||
{{localize tab.label}}
|
||||
</button>
|
||||
{{/each}}
|
||||
</nav> --}}
|
||||
<div class="campaign-frames-container">
|
||||
{{#each campaignFrames as |frame|}}
|
||||
{{> ".frame" }}
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#*inline ".frame"}}
|
||||
<fieldset>
|
||||
<legend>{{name}}</legend>
|
||||
|
||||
<div class="campaign-frame-container">
|
||||
<img src="{{img}}" />
|
||||
<div class="information-container">
|
||||
<label>{{localize "The Pitch"}}</label>
|
||||
<div class="subtext">{{localize "Read this section to your players to to introduce them to the campaign."}}</div>
|
||||
<div>{{{pitch}}}</div>
|
||||
</div>
|
||||
<div class="information-container">
|
||||
<label>{{localize "Tone & Feel"}}</label>
|
||||
<div>{{toneAndFeel}}</div>
|
||||
</div>
|
||||
<div class="information-container">
|
||||
<label>{{localize "Themes"}}</label>
|
||||
<div>{{themes}}</div>
|
||||
</div>
|
||||
<div class="information-container">
|
||||
<label>{{localize "Touchstones"}}</label>
|
||||
<div class="italic">{{touchstones}}</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
{{/inline}}
|
||||
|
|
@ -35,4 +35,6 @@
|
|||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<button data-action="openCampaignFrames">Campaign Frames</button>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue