pull/216/head
ruibaby 2019-02-15 17:49:40 +08:00
parent a3934657ad
commit 537df9f59a
23 changed files with 48 additions and 48 deletions

View File

@ -14,7 +14,7 @@
<#list archive.posts?sort_by("postDate")?reverse as post> <#list archive.posts?sort_by("postDate")?reverse as post>
<div class="listing-item"> <div class="listing-item">
<div class="listing-post"> <div class="listing-post">
<a href="/archives/${post.postUrl!}" title="${post.postTitle!}">${post.postTitle!}</a> <a href="${options.blog_url!}/archives/${post.postUrl!}" title="${post.postTitle!}">${post.postTitle!}</a>
<div class="post-time"> <div class="post-time">
<span class="date">${post.postDate?string("yyyy-MM-dd")}</span> <span class="date">${post.postDate?string("yyyy-MM-dd")}</span>
</div> </div>

View File

@ -12,17 +12,17 @@
<#if posts.hasPrevious()> <#if posts.hasPrevious()>
<#if posts.number == 1> <#if posts.number == 1>
<li class="pre pagbuttons"> <li class="pre pagbuttons">
<a class="btn" role="navigation" href="/">上一页</a> <a class="btn" role="navigation" href="${options.blog_url!}/">上一页</a>
</li> </li>
<#else > <#else >
<li class="pre pagbuttons"> <li class="pre pagbuttons">
<a class="btn" role="navigation" href="/page/${posts.number}">上一页</a> <a class="btn" role="navigation" href="${options.blog_url!}/page/${posts.number}">上一页</a>
</li> </li>
</#if> </#if>
</#if> </#if>
<#if posts.hasNext()> <#if posts.hasNext()>
<li class="next pagbuttons"> <li class="next pagbuttons">
<a class="btn" role="navigation" href="/page/${posts.number+2}">下一页</a> <a class="btn" role="navigation" href="${options.blog_url!}/page/${posts.number+2}">下一页</a>
</li> </li>
</#if> </#if>
</ul> </ul>

View File

@ -2,7 +2,7 @@
<div class="post animated fadeInDown"> <div class="post animated fadeInDown">
<div class="post-title"> <div class="post-title">
<h3> <h3>
<a href="/archives/${post.postUrl}">${post.postTitle}</a> <a href="${options.blog_url!}/archives/${post.postUrl}">${post.postTitle}</a>
</h3> </h3>
</div> </div>
<div class="post-content"> <div class="post-content">
@ -19,11 +19,11 @@
<i class="fa fa-sun-o"></i> <i class="fa fa-sun-o"></i>
<span class="date">${post.postDate?string("yyyy-MM-dd")}</span> <span class="date">${post.postDate?string("yyyy-MM-dd")}</span>
<i class="fa fa-comment-o"></i> <i class="fa fa-comment-o"></i>
<a href="/archives/${post.postUrl}#comment_widget">Comments</a> <a href="${options.blog_url!}/archives/${post.postUrl}#comment_widget">Comments</a>
<#if post.tags?size gt 0> <#if post.tags?size gt 0>
<i class="fa fa-tag"></i> <i class="fa fa-tag"></i>
<#list post.tags as tag> <#list post.tags as tag>
<a href="/tags/${tag.tagUrl}" class="tag">&nbsp;${tag.tagName}</a> <a href="${options.blog_url!}/tags/${tag.tagUrl}" class="tag">&nbsp;${tag.tagName}</a>
</#list> </#list>
</#if> </#if>
</div> </div>

View File

@ -3,7 +3,7 @@
<div class="title"> <div class="title">
<img src="${options.blog_logo!'/anatole/source/images/logo@2x.png'}" style="width:127px;<#if (options.anatole_style_avatar_circle!'false')=='true'>border-radius:50%</#if>" /> <img src="${options.blog_logo!'/anatole/source/images/logo@2x.png'}" style="width:127px;<#if (options.anatole_style_avatar_circle!'false')=='true'>border-radius:50%</#if>" />
<h3 title=""> <h3 title="">
<a href="/">${options.blog_title!'ANATOLE'}</a> <a href="${options.blog_url!}">${options.blog_title!'ANATOLE'}</a>
</h3> </h3>
<div class="description"> <div class="description">
<#if (options.anatole_style_hitokoto!'false')=="true"> <#if (options.anatole_style_hitokoto!'false')=="true">

View File

@ -2,7 +2,7 @@
<#if (options.theme_anatole_sns_rss!'true')=='true'> <#if (options.theme_anatole_sns_rss!'true')=='true'>
<li> <li>
<a target="_blank" href="/atom.xml"> <a target="_blank" href="${options.blog_url!}/atom.xml">
<i class="fa fa-rss"></i> <i class="fa fa-rss"></i>
</a> </a>
</li> </li>

View File

@ -52,7 +52,7 @@
<i class="fa fa-sun-o"></i> <i class="fa fa-sun-o"></i>
<span class="date">${post.postDate?string("yyyy-MM-dd")}</span> <span class="date">${post.postDate?string("yyyy-MM-dd")}</span>
<i class="fa fa-comment-o"></i> <i class="fa fa-comment-o"></i>
<a href="/archives/${post.postUrl}#comment_widget">Comments</a> <a href="${options.blog_url!}/archives/${post.postUrl}#comment_widget">Comments</a>
</div> </div>
</div> </div>
</div> </div>

View File

@ -52,11 +52,11 @@
<i class="fa fa-sun-o"></i> <i class="fa fa-sun-o"></i>
<span class="date">${post.postDate?string("yyyy-MM-dd")}</span> <span class="date">${post.postDate?string("yyyy-MM-dd")}</span>
<i class="fa fa-comment-o"></i> <i class="fa fa-comment-o"></i>
<a href="/archives/${post.postUrl}#comment_widget">Comments</a> <a href="${options.blog_url!}/archives/${post.postUrl}#comment_widget">Comments</a>
<#if post.tags?size gt 0> <#if post.tags?size gt 0>
<i class="fa fa-tag"></i> <i class="fa fa-tag"></i>
<#list post.tags as tag> <#list post.tags as tag>
<a href="/tags/${tag.tagUrl}" class="tag">&nbsp;${tag.tagName}</a> <a href="${options.blog_url!}/tags/${tag.tagUrl}" class="tag">&nbsp;${tag.tagName}</a>
</#list> </#list>
</#if> </#if>
</div> </div>
@ -81,12 +81,12 @@
<ul class="clearfix"> <ul class="clearfix">
<#if nextPost??> <#if nextPost??>
<li class="pre pagbuttons"> <li class="pre pagbuttons">
<a class="btn" role="navigation" href="/archives/${nextPost.postUrl}" title="${nextPost.postTitle}">上一篇</a> <a class="btn" role="navigation" href="${options.blog_url!}/archives/${nextPost.postUrl}" title="${nextPost.postTitle}">上一篇</a>
</li> </li>
</#if> </#if>
<#if prePost??> <#if prePost??>
<li class="next pagbuttons"> <li class="next pagbuttons">
<a class="btn" role="navigation" href="/archives/${prePost.postUrl}" title="${prePost.postTitle}">下一篇</a> <a class="btn" role="navigation" href="${options.blog_url!}/archives/${prePost.postUrl}" title="${prePost.postTitle}">下一篇</a>
</li> </li>
</#if> </#if>
</ul> </ul>

View File

@ -12,17 +12,17 @@
<#if posts.hasPrevious()> <#if posts.hasPrevious()>
<#if posts.number == 1> <#if posts.number == 1>
<li class="pre pagbuttons"> <li class="pre pagbuttons">
<a class="btn" role="navigation" href="/tags/${tag.tagUrl}">上一页</a> <a class="btn" role="navigation" href="${options.blog_url!}/tags/${tag.tagUrl}">上一页</a>
</li> </li>
<#else > <#else >
<li class="pre pagbuttons"> <li class="pre pagbuttons">
<a class="btn" role="navigation" href="/tags/${tag.tagUrl}/page/${posts.number}">上一页</a> <a class="btn" role="navigation" href="${options.blog_url!}/tags/${tag.tagUrl}/page/${posts.number}">上一页</a>
</li> </li>
</#if> </#if>
</#if> </#if>
<#if posts.hasNext()> <#if posts.hasNext()>
<li class="next pagbuttons"> <li class="next pagbuttons">
<a class="btn" role="navigation" href="/tags/${tag.tagUrl}/page/${posts.number+2}">下一页</a> <a class="btn" role="navigation" href="${options.blog_url!}/tags/${tag.tagUrl}/page/${posts.number+2}">下一页</a>
</li> </li>
</#if> </#if>
</ul> </ul>

View File

@ -14,14 +14,14 @@
<div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text"> <div class="post_entry-content mdl-color-text--grey-600 mdl-card__supporting-text">
<!-- Post Title --> <!-- Post Title -->
<p class="post_entry-title"> <p class="post_entry-title">
<a href="/archives/${post.postUrl}">${post.postTitle}</a> <a href="${options.blog_url!}/archives/${post.postUrl}">${post.postTitle}</a>
</p> </p>
<!-- Post Excerpt --> <!-- Post Excerpt -->
<p class="post_entry-excerpt"> <p class="post_entry-excerpt">
${post.postSummary!}... ${post.postSummary!}...
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
<span> <span>
<a href="/archives/${post.postUrl}" target="_self">阅读全文</a> <a href="${options.blog_url!}/archives/${post.postUrl}" target="_self">阅读全文</a>
</span> </span>
</p> </p>
<!-- Post Tags --> <!-- Post Tags -->
@ -29,7 +29,7 @@
<#if post.tags??> <#if post.tags??>
<#list post.tags as tag> <#list post.tags as tag>
<li class="post_entry-tags-list-item"> <li class="post_entry-tags-list-item">
<a class="post_entry-tags-list-link" href="/tags/${tag.tagUrl}/">${tag.tagName}</a> <a class="post_entry-tags-list-link" href="${options.blog_url!}/tags/${tag.tagUrl}/">${tag.tagName}</a>
</li> </li>
</#list> </#list>
</#if> </#if>

View File

@ -35,7 +35,7 @@
<#if post.tags??> <#if post.tags??>
<#list post.tags as tag> <#list post.tags as tag>
<li class="mdl-menu__item"> <li class="mdl-menu__item">
<a class="post_tag-link" href="/tags/${tag.tagUrl}/">${tag.tagName}</a> <a class="post_tag-link" href="${options.blog_url!}/tags/${tag.tagUrl}/">${tag.tagName}</a>
</li> </li>
</#list> </#list>
</#if> </#if>

View File

@ -9,14 +9,14 @@
<div class="post_thumbnail-custom mdl-card__media mdl-color-text--grey-50 lazy" data-original="${post.postThumbnail!}"> <div class="post_thumbnail-custom mdl-card__media mdl-color-text--grey-50 lazy" data-original="${post.postThumbnail!}">
</#if> </#if>
<!-- Post Title --> <!-- Post Title -->
<p class="article-headline-p"><a href="/archives/${post.postUrl}">${post.postTitle!}</a></p> <p class="article-headline-p"><a href="${options.blog_url!}/archives/${post.postUrl}">${post.postTitle!}</a></p>
</div> </div>
<!-- Post Excerpt --> <!-- Post Excerpt -->
<div class="mdl-color-text--grey-600 mdl-card__supporting-text post_entry-content"> <div class="mdl-color-text--grey-600 mdl-card__supporting-text post_entry-content">
${post.postSummary!} ${post.postSummary!}
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;
<span> <span>
<a href="/archives/${post.postUrl}" target="_self">阅读全文</a> <a href="${options.blog_url!}/archives/${post.postUrl}" target="_self">阅读全文</a>
</span> </span>
</div> </div>
<!-- Post_entry Info--> <!-- Post_entry Info-->
@ -37,7 +37,7 @@
<#if post.categories??> <#if post.categories??>
<#list post.categories as cate> <#list post.categories as cate>
<span class="post_entry-category"> <span class="post_entry-category">
<a class="post_category-link" href="/categories/${cate.cateUrl}/">${cate.cateName}</a> <a class="post_category-link" href="${options.blog_url!}/categories/${cate.cateUrl}/">${cate.cateName}</a>
</span> </span>
</#list> </#list>
</#if> </#if>

View File

@ -3,7 +3,7 @@
<i class="material-icons mdl-color-text--white" role="presentation">search</i> <i class="material-icons mdl-color-text--white" role="presentation">search</i>
</label> </label>
<form autocomplete="off" id="search-form" method="get" action="/search" accept-charset="UTF-8" class="mdl-textfield__expandable-holder"> <form autocomplete="off" id="search-form" method="get" action="${options.blog_url!}/search" accept-charset="UTF-8" class="mdl-textfield__expandable-holder">
<input class="mdl-textfield__input search-input" type="search" name="keyword" id="search" placeholder=""> <input class="mdl-textfield__input search-input" type="search" name="keyword" id="search" placeholder="">
<label id="search-form-label" class="mdl-textfield__label" for="search"></label> <label id="search-form-label" class="mdl-textfield__label" for="search"></label>
<input type="hidden" name="sitesearch" value=""> <input type="hidden" name="sitesearch" value="">

View File

@ -25,7 +25,7 @@
<span class="visuallyhidden">Pages</span> <span class="visuallyhidden">Pages</span>
</button> </button>
<ul class="mdl-menu mdl-js-menu mdl-menu--bottom-right" for="show-pages-button"> <ul class="mdl-menu mdl-js-menu mdl-menu--bottom-right" for="show-pages-button">
<a class="index_share-link" href="/tags" title="标签"> <a class="index_share-link" href="${options.blog_url!}/tags" title="标签">
<li class="mdl-menu__item mdl-js-ripple-effect"> <li class="mdl-menu__item mdl-js-ripple-effect">
标签 标签
</li> </li>

View File

@ -26,7 +26,7 @@
<!-- Header Title --> <!-- Header Title -->
<span class="header-title header-item"> <span class="header-title header-item">
<a href="/" title="<%= config.title %>"> <a href="${options.blog_url!}/" title="<%= config.title %>">
${options.blog_title!} ${options.blog_title!}
</a> </a>
</span> </span>
@ -38,7 +38,7 @@
<!-- Header Nav --> <!-- Header Nav -->
<nav class="header-nav header-item"> <nav class="header-nav header-item">
<span class="header-nav-item"> <span class="header-nav-item">
<a href="/" title="Home"> <a href="${options.blog_url!}/" title="Home">
<span>主页</span> <span>主页</span>
</a> </a>
</span> </span>
@ -46,25 +46,25 @@
<!-- Pages --> <!-- Pages -->
<span class="header-nav-item"> <span class="header-nav-item">
<a href="/tags" title="标签"> <a href="${options.blog_url!}/tags" title="标签">
<span>标签</span> <span>标签</span>
</a> </a>
</span> </span>
<span class="header-nav-item"> <span class="header-nav-item">
<a href="/gallery" title="图库"> <a href="${options.blog_url!}/gallery" title="图库">
<span>图库</span> <span>图库</span>
</a> </a>
</span> </span>
<span class="header-nav-item"> <span class="header-nav-item">
<a href="/links" title="友链"> <a href="${options.blog_url!}/links" title="友链">
<span>友链</span> <span>友链</span>
</a> </a>
</span> </span>
<span class="header-nav-item"> <span class="header-nav-item">
<a href="/about" title="关于"> <a href="${options.blog_url!}/about" title="关于">
<span>关于</span> <span>关于</span>
</a> </a>
</span> </span>

View File

@ -2,7 +2,7 @@
<!-- Prev Nav --> <!-- Prev Nav -->
<#if nextPost??> <#if nextPost??>
<a href="/archives/${nextPost.postUrl!}" id="post_nav-newer" class="prev-content"> <a href="${options.blog_url!}/archives/${nextPost.postUrl!}" id="post_nav-newer" class="prev-content">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon mdl-color--white mdl-color-text--grey-900" role="presentation"> <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon mdl-color--white mdl-color-text--grey-900" role="presentation">
<i class="material-icons">arrow_back</i> <i class="material-icons">arrow_back</i>
</button> </button>
@ -15,7 +15,7 @@
<!-- Next Nav --> <!-- Next Nav -->
<#if prePost??> <#if prePost??>
<a href="/archives/${prePost.postUrl!}" id="post_nav-older" class="next-content"> <a href="${options.blog_url!}/archives/${prePost.postUrl!}" id="post_nav-older" class="next-content">
旧篇 旧篇
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon mdl-color--white mdl-color-text--grey-900" role="presentation"> <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon mdl-color--white mdl-color-text--grey-900" role="presentation">

View File

@ -12,7 +12,7 @@
</li> </li>
<!-- Homepage --> <!-- Homepage -->
<li id="sidebar-first-li"> <li id="sidebar-first-li">
<a href="/"> <a href="${options.blog_url!}/">
<i class="material-icons sidebar-material-icons">home</i> <i class="material-icons sidebar-material-icons">home</i>
主页 主页
</a> </a>
@ -32,7 +32,7 @@
<#if archives??> <#if archives??>
<#list archives?sort_by("year")?reverse as archive> <#list archives?sort_by("year")?reverse as archive>
<li> <li>
<a class="sidebar_archives-link" href="/archives/${archive.year}/${archive.month}/">${archive.month}月 ${archive.year}<span class="sidebar_archives-count">${archive.count}</span></a> <a class="sidebar_archives-link" href="${options.blog_url!}/archives/${archive.year}/${archive.month}/">${archive.month}月 ${archive.year}<span class="sidebar_archives-count">${archive.count}</span></a>
</li> </li>
</#list> </#list>
</#if> </#if>
@ -53,7 +53,7 @@
<@commonTag method="categories"> <@commonTag method="categories">
<#list categories as cate> <#list categories as cate>
<li> <li>
<a class="sidebar_archives-link" href="/categories/${cate.cateUrl}/">${cate.cateName}<span class="sidebar_archives-count">${cate.posts?size}</span></a> <a class="sidebar_archives-link" href="${options.blog_url!}/categories/${cate.cateUrl}/">${cate.cateName}<span class="sidebar_archives-count">${cate.posts?size}</span></a>
</li> </li>
</#list> </#list>
</@commonTag> </@commonTag>
@ -78,7 +78,7 @@
<#if (options.theme_material_other_sidebar_postcount!'true') == 'true'> <#if (options.theme_material_other_sidebar_postcount!'true') == 'true'>
<!-- Article Number --> <!-- Article Number -->
<li> <li>
<a href="/archives"> <a href="${options.blog_url!}/archives">
文章总数 文章总数
<@articleTag method="postsCount"> <@articleTag method="postsCount">
<span class="sidebar-badge">${postsCount}</span> <span class="sidebar-badge">${postsCount}</span>

View File

@ -6,7 +6,7 @@
<!-- Header --> <!-- Header -->
<header id="header"> <header id="header">
<h1> <h1>
<a href="/"><strong>${options.blog_title!}</strong></a> - 图库 <a href="${options.blog_url!}/"><strong>${options.blog_title!}</strong></a> - 图库
</h1> </h1>
<nav> <nav>
<ul> <ul>

View File

@ -32,7 +32,7 @@
<@commonTag method="tags"> <@commonTag method="tags">
<#if tags?? && tags?size gt 0> <#if tags?? && tags?size gt 0>
<#list tags as tag> <#list tags as tag>
<a href="/tags/${tag.tagUrl}/" style="font-size: 22.33px; color: #757575">${tag.tagName}</a> <a href="${options.blog_url!}/tags/${tag.tagUrl}/" style="font-size: 22.33px; color: #757575">${tag.tagName}</a>
</#list> </#list>
</#if> </#if>
</@commonTag> </@commonTag>

View File

@ -14,7 +14,7 @@
<#include "_partial/Isolation-post_entry.ftl"> <#include "_partial/Isolation-post_entry.ftl">
</#if> </#if>
<#include "_partial/index-nav.ftl"> <#include "_partial/index-nav.ftl">
<@nav url="/archives/"></@nav> <@nav url="${options.blog_url!}/archives/"></@nav>
<#if (options.theme_material_scheme!'Paradox') == "Paradox"> <#if (options.theme_material_scheme!'Paradox') == "Paradox">
<#include "_partial/Paradox-post_entry-thumbnail.ftl"> <#include "_partial/Paradox-post_entry-thumbnail.ftl">
</#if> </#if>

View File

@ -14,7 +14,7 @@
<#include "_partial/Isolation-post_entry.ftl"> <#include "_partial/Isolation-post_entry.ftl">
</#if> </#if>
<#include "_partial/index-nav.ftl"> <#include "_partial/index-nav.ftl">
<@nav url="/categories/${category.cateUrl}/"></@nav> <@nav url="${options.blog_url!}/categories/${category.cateUrl}/"></@nav>
<#if (options.theme_material_scheme!'Paradox') == "Paradox"> <#if (options.theme_material_scheme!'Paradox') == "Paradox">
<#include "_partial/Paradox-post_entry-thumbnail.ftl"> <#include "_partial/Paradox-post_entry-thumbnail.ftl">
</#if> </#if>

View File

@ -19,7 +19,7 @@
<#include "_partial/Isolation-post_entry.ftl"> <#include "_partial/Isolation-post_entry.ftl">
</#if> </#if>
<#include "_partial/index-nav.ftl"> <#include "_partial/index-nav.ftl">
<@nav url="/"></@nav> <@nav url="${options.blog_url!}/"></@nav>
<#if (options.theme_material_scheme!'Paradox') == "Paradox"> <#if (options.theme_material_scheme!'Paradox') == "Paradox">
<#include "_partial/Paradox-post_entry-thumbnail.ftl"> <#include "_partial/Paradox-post_entry-thumbnail.ftl">
</#if> </#if>

View File

@ -22,13 +22,13 @@
<nav class="material-nav mdl-cell mdl-cell--12-col"> <nav class="material-nav mdl-cell mdl-cell--12-col">
<#if posts.hasPrevious()> <#if posts.hasPrevious()>
<#if posts.number == 1> <#if posts.number == 1>
<a class="extend prev" rel="prev" href="/search?keyword=${keyword}"> <a class="extend prev" rel="prev" href="${options.blog_url!}/search?keyword=${keyword}">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon">
<i class="material-icons" role="presentation">arrow_back</i> <i class="material-icons" role="presentation">arrow_back</i>
</button> </button>
</a> </a>
<#else > <#else >
<a class="extend prev" rel="prev" href="/search/page/${posts.number}?keyword=${keyword}"> <a class="extend prev" rel="prev" href="${options.blog_url!}/search/page/${posts.number}?keyword=${keyword}">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon">
<i class="material-icons" role="presentation">arrow_back</i> <i class="material-icons" role="presentation">arrow_back</i>
</button> </button>
@ -37,7 +37,7 @@
</#if> </#if>
<span class="page-number current">${posts.number+1}</span> <span class="page-number current">${posts.number+1}</span>
<#if posts.hasNext()> <#if posts.hasNext()>
<a class="extend next" rel="next" href="/search/page/${posts.number+2}?keyword=${keyword}"> <a class="extend next" rel="next" href="${options.blog_url!}/search/page/${posts.number+2}?keyword=${keyword}">
<button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon"> <button class="mdl-button mdl-js-button mdl-js-ripple-effect mdl-button--icon">
<i class="material-icons" role="presentation">arrow_forward</i> <i class="material-icons" role="presentation">arrow_forward</i>
</button> </button>

View File

@ -14,7 +14,7 @@
<#include "_partial/Isolation-post_entry.ftl"> <#include "_partial/Isolation-post_entry.ftl">
</#if> </#if>
<#include "_partial/index-nav.ftl"> <#include "_partial/index-nav.ftl">
<@nav url="/tags/${tag.tagUrl}/"></@nav> <@nav url="${options.blog_url!}/tags/${tag.tagUrl}/"></@nav>
<#if (options.theme_material_scheme!'Paradox') == "Paradox"> <#if (options.theme_material_scheme!'Paradox') == "Paradox">
<#include "_partial/Paradox-post_entry-thumbnail.ftl"> <#include "_partial/Paradox-post_entry-thumbnail.ftl">
</#if> </#if>