mirror of
https://github.com/next-theme/hexo-theme-next.git
synced 2026-01-17 18:22:33 +00:00
Remove .post-meta-divider
This commit is contained in:
parent
d088fd4e2f
commit
fb37a76f65
@ -246,7 +246,6 @@ post_meta:
|
||||
# Dependencies: https://github.com/next-theme/hexo-word-counter
|
||||
symbols_count_time:
|
||||
separated_meta: true
|
||||
item_text_post: true
|
||||
item_text_total: false
|
||||
|
||||
# Use icon instead of the symbol # to indicate the tag at the bottom of the post
|
||||
|
||||
@ -32,12 +32,12 @@
|
||||
<div class="footer-inner">
|
||||
{% include '_partials/languages.njk' %}
|
||||
{{ partial('_partials/footer.njk', {}, {cache: theme.cache.enable}) }}
|
||||
{{ partial('_third-party/statistics/index.njk', {}, {cache: theme.cache.enable}) }}
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
{{ partial('_scripts/index.njk', {}, {cache: theme.cache.enable}) }}
|
||||
{{ partial('_third-party/index.njk', {}, {cache: theme.cache.enable}) }}
|
||||
{{ partial('_third-party/statistics/index.njk', {}, {cache: theme.cache.enable}) }}
|
||||
|
||||
{%- if theme.pjax %}
|
||||
<div class="pjax">
|
||||
|
||||
@ -135,9 +135,7 @@
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="far fa-file-word"></i>
|
||||
</span>
|
||||
{%- if theme.symbols_count_time.item_text_post %}
|
||||
<span class="post-meta-item-text">{{ __('symbols_count_time.count') + __('symbol.colon') }}</span>
|
||||
{%- endif %}
|
||||
<span class="post-meta-item-text">{{ __('symbols_count_time.count') + __('symbol.colon') }}</span>
|
||||
<span>{{ symbolsCount(post) }}</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
@ -147,9 +145,7 @@
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="far fa-clock"></i>
|
||||
</span>
|
||||
{%- if theme.symbols_count_time.item_text_post %}
|
||||
<span class="post-meta-item-text">{{ __('symbols_count_time.time') }} ≈</span>
|
||||
{%- endif %}
|
||||
<span class="post-meta-item-text">{{ __('symbols_count_time.time') }} ≈</span>
|
||||
<span>{{ symbolsTime(post, config.symbols_count_time.awl, config.symbols_count_time.wpm, __('symbols_count_time.time_minutes')) }}</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
|
||||
@ -18,29 +18,61 @@
|
||||
<i class="{{ theme.footer.icon.name }}"></i>
|
||||
</span>
|
||||
<span class="author" itemprop="copyrightHolder">{{ theme.footer.copyright or author }}</span>
|
||||
</div>
|
||||
|
||||
{%- if config.symbols_count_time.total_symbols or config.symbols_count_time.total_time %}
|
||||
<div class="wordcount">
|
||||
{%- if config.symbols_count_time.total_symbols %}
|
||||
<span class="post-meta-divider">|</span>
|
||||
<span class="post-meta-item">
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="fa fa-chart-area"></i>
|
||||
<i class="fa fa-chart-line"></i>
|
||||
</span>
|
||||
{%- if theme.symbols_count_time.item_text_total %}
|
||||
<span class="post-meta-item-text">{{ __('symbols_count_time.count_total') + __('symbol.colon') }}</span>
|
||||
<span>{{ __('symbols_count_time.count_total') + __('symbol.colon') }}</span>
|
||||
{%- endif %}
|
||||
<span title="{{ __('symbols_count_time.count_total') }}">{{ symbolsCountTotal(site) }}</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
|
||||
{%- if config.symbols_count_time.total_time %}
|
||||
<span class="post-meta-divider">|</span>
|
||||
<span class="post-meta-item">
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="fa fa-coffee"></i>
|
||||
</span>
|
||||
{%- if theme.symbols_count_time.item_text_total %}
|
||||
<span class="post-meta-item-text">{{ __('symbols_count_time.time_total') }} ≈</span>
|
||||
<span>{{ __('symbols_count_time.time_total') }} ≈</span>
|
||||
{%- endif %}
|
||||
<span title="{{ __('symbols_count_time.time_total') }}">{{ symbolsTimeTotal(site, config.symbols_count_time.awl, config.symbols_count_time.wpm, __('symbols_count_time.time_minutes')) }}</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
</div>
|
||||
{%- endif %}
|
||||
|
||||
{%- if theme.busuanzi_count.enable %}
|
||||
<div class="busuanzi-count">
|
||||
{%- if theme.busuanzi_count.total_visitors %}
|
||||
<span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;">
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="{{ theme.busuanzi_count.total_visitors_icon }}"></i>
|
||||
</span>
|
||||
<span class="site-uv" title="{{ __('footer.total_visitors') }}">
|
||||
<span id="busuanzi_value_site_uv"></span>
|
||||
</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
|
||||
{%- if theme.busuanzi_count.total_views %}
|
||||
<span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;">
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="{{ theme.busuanzi_count.total_views_icon }}"></i>
|
||||
</span>
|
||||
<span class="site-pv" title="{{ __('footer.total_views') }}">
|
||||
<span id="busuanzi_value_site_pv"></span>
|
||||
</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
</div>
|
||||
{%- endif %}
|
||||
|
||||
{%- if theme.footer.powered %}
|
||||
<div class="powered-by">
|
||||
|
||||
@ -1,31 +1,3 @@
|
||||
{%- if theme.busuanzi_count.enable %}
|
||||
<div class="busuanzi-count">
|
||||
<script{{ pjax }} async src="https://busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
|
||||
|
||||
{%- if theme.busuanzi_count.total_visitors %}
|
||||
<span class="post-meta-item" id="busuanzi_container_site_uv" style="display: none;">
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="{{ theme.busuanzi_count.total_visitors_icon }}"></i>
|
||||
</span>
|
||||
<span class="site-uv" title="{{ __('footer.total_visitors') }}">
|
||||
<span id="busuanzi_value_site_uv"></span>
|
||||
</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
|
||||
{%- if theme.busuanzi_count.total_visitors and theme.busuanzi_count.total_views %}
|
||||
<span class="post-meta-divider">|</span>
|
||||
{%- endif %}
|
||||
|
||||
{%- if theme.busuanzi_count.total_views %}
|
||||
<span class="post-meta-item" id="busuanzi_container_site_pv" style="display: none;">
|
||||
<span class="post-meta-item-icon">
|
||||
<i class="{{ theme.busuanzi_count.total_views_icon }}"></i>
|
||||
</span>
|
||||
<span class="site-pv" title="{{ __('footer.total_views') }}">
|
||||
<span id="busuanzi_value_site_pv"></span>
|
||||
</span>
|
||||
</span>
|
||||
{%- endif %}
|
||||
</div>
|
||||
{%- endif %}
|
||||
|
||||
@ -83,21 +83,14 @@
|
||||
}
|
||||
}
|
||||
|
||||
.post-meta .post-meta-item + .post-meta-item::before {
|
||||
// .post-meta-item exists in .post-meta and footer
|
||||
.post-meta-item + .post-meta-item::before {
|
||||
content: '|';
|
||||
margin: 0 .5em;
|
||||
}
|
||||
|
||||
.post-meta-divider {
|
||||
margin: 0 .5em;
|
||||
}
|
||||
|
||||
.post-meta-item-icon {
|
||||
margin-right: 3px;
|
||||
|
||||
+tablet-mobile() {
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.post-meta-item-text {
|
||||
|
||||
@ -71,7 +71,3 @@
|
||||
animation: icon-animate 1.33s ease-in-out infinite;
|
||||
}
|
||||
}
|
||||
|
||||
.powered-by, .theme-info {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user