1 2<footer class="footer py-4 js-page-footer"> 3 <div class="main"> 4 5 {%- assign _site_author = site.author -%} 6 {%- if _site_author.type == 'organization' -%} 7 {%- assign _site_author_itemtype = 'http://schema.org/Organization' -%} 8 {%- else -%} 9 {%- assign _site_author_itemtype = 'http://schema.org/Person' -%} 10 {%- endif -%} 11 12 <div itemscope itemtype="{{ _site_author_itemtype }}"> 13 <meta itemprop="name" content="{{ _site_author.name }}"> 14 {%- assign _site_author_url = _site_author.url | default: '/'-%} 15 {%- include snippets/get-nav-url.html path=_site_author_url -%} 16 {%- assign _site_author_url = __return -%} 17 <meta itemprop="url" content="{{ _site_author_url }}"> 18 {%- if _site_author.bio -%} 19 <meta itemprop="description" content="{{ _site_author.bio }}"> 20 {%- endif -%} 21 <div class="footer__author-links"> 22 {%- include author-links.html author=_site_author -%} 23 </div> 24 </div> 25 {%- include snippets/get-locale-string.html key='COPYRIGHT_DATES' -%} 26 {%- assign _locale_copyright_dates = __return -%} 27 <div class="site-info mt-2"> 28 <div> 29 {%- include snippets/get-locale-string.html key='COPYRIGHT_DATES' -%} 30 {%- assign _locale_copyright_dates = __return -%} 31 © {{ site.title }} {{ _locale_copyright_dates }}, 32 Powered by <a title="Jekyll is a simple, blog-aware, static site generator." href="http://jekyllrb.com/">Jekyll</a> & <a 33 title="TeXt is a super customizable Jekyll theme." href="https://github.com/kitian616/jekyll-TeXt-theme">TeXt Theme</a>. 34 </div> 35 </div> 36 </div> 37</footer>