nicenote/themes/material/layout/_partial/post-content.ejs
2018-07-13 19:29:56 +08:00

15 lines
416 B
Plaintext
Executable File

<div id="post-content" class="mdl-color-text--grey-700 mdl-card__supporting-text fade out">
<% if(theme.scheme === 'Paradox') { %>
<%- page.content %>
<% } %>
<% if(theme.scheme === 'Isolation') { %>
<div class="post-content_wrapper">
<p class="post-title">
<%- page.title %>
</p>
<%- page.content %>
</div>
<% } %>
</div>