Files
menav/templates/components/page-header.hbs

24 lines
956 B
Handlebars

{{!-- page-header.hbs - 统一页面标题区(可选显示书签页内容更新时间) --}}
<div class="welcome-section">
<div class="welcome-section-main">
{{#ifEquals pageId @root.homePageId}}
<h2 data-editable="profile-title">{{title}}</h2>
<h3 data-editable="profile-subtitle">{{subtitle}}</h3>
{{else}}
<div class="welcome-title-row">
<h2 data-editable="page-title">{{title}}</h2>
{{#if pageMeta}}
{{#if pageMeta.updatedAt}}
<span class="page-updated-inline" title="{{pageMeta.updatedAt}}">
update: {{formatDate pageMeta.updatedAt "YYYY-MM-DD"}} | from: {{pageMeta.updatedAtSource}}
</span>
{{/if}}
{{/if}}
</div>
<p class="subtitle" data-editable="page-subtitle">{{subtitle}}</p>
{{/ifEquals}}
</div>
</div>