Moved views out of private folder
This commit is contained in:
27
rpg-docs/client/views/meta/changeLog/changeLog.html
Normal file
27
rpg-docs/client/views/meta/changeLog/changeLog.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<template name="changeLog">
|
||||
<app-toolbar class="app-grey white-text">
|
||||
<paper-icon-button icon="menu" drawer-toggle></paper-icon-button>
|
||||
<div flex>
|
||||
Change Log
|
||||
</div>
|
||||
</app-toolbar>
|
||||
<div class="changeLog scroll-y" fit>
|
||||
<div layout vertical center>
|
||||
<div layout vertical style="max-width: 800px; padding: 4px;">
|
||||
{{#each changeLogs}}
|
||||
<paper-material class="card"
|
||||
style="margin: 4px;
|
||||
padding: 16px;"
|
||||
layout vertical>
|
||||
<h2>{{version}}</h2>
|
||||
<ul>
|
||||
{{#each changes}}
|
||||
<li>{{this}}</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</paper-material>
|
||||
{{/each}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user