181 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			181 lines
		
	
	
		
			9.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {%- import 'macros/seo.html' as macros_seo %}
 | |
| {%- import "macros/macros.html" as macros %}
 | |
| {# Load current language i18n data from .toml files in user's '/i18n' folder, use theme as fallback. #}
 | |
| {%- set i18n = load_data(path="i18n/" ~ lang ~ '.toml', required=false) -%}
 | |
| {%- if not i18n -%}{%- set i18n = load_data(path="themes/abridge/i18n/" ~ lang ~ ".toml", required=false) -%}{%- endif %}
 | |
| 
 | |
| {%- set uglyurls = config.extra.uglyurls | default(value=false) -%}
 | |
| {%- if config.extra.offline %}{% set uglyurls = true %}{% endif %}
 | |
| <!DOCTYPE html>
 | |
| <html lang="{%- if lang != config.default_language %}{{ lang }}{% else %}{{ config.extra.language_code | default(value=lang) }}{% endif %}">
 | |
| <head>
 | |
|   {%- include "partials/head.html" %}
 | |
| 
 | |
|   {#- SEO: title, description, etc #}
 | |
|   {%- block seo %}
 | |
|     {%- if config.extra.title_separator %}
 | |
|       {%- set title_separator = " " ~ config.extra.title_separator ~ " " -%}
 | |
|     {%- else %}
 | |
|       {%- set title_separator = " | " -%}
 | |
|     {%- endif %}
 | |
|   {%- endblock seo %}
 | |
| 
 | |
|   {%- block comments_init %}
 | |
|   {%- endblock comments_init %}
 | |
| 
 | |
|   {%- include "partials/head_js.html" %}
 | |
| </head>
 | |
| <body>
 | |
| {%- block header %}
 | |
|   <header>
 | |
|     <nav>
 | |
|       <div>
 | |
|         {%- if config.extra.logo -%}
 | |
| 
 | |
|         <h1><a href="{{ get_url(path="/", lang=lang) }}{%- if uglyurls %}/index.html{%- endif %}" title="{{config.title}}">
 | |
|         {%- if config.extra.logo.file -%}
 | |
|         <img src="{{ config.base_url | safe }}/{{ config.extra.logo.file | safe }}"{%- if config.extra.logo.alt %} alt="{{ config.extra.logo.alt | safe }}"{%- endif %}{%- if config.extra.logo.width %} width="{{ config.extra.logo.width | safe }}"{%- endif %}{%- if config.extra.logo.height %} height="{{ config.extra.logo.height | safe }}"{%- endif %} />
 | |
|         {%- endif -%}
 | |
|         {%- if config.extra.logo.text -%}{{ config.extra.logo.text | safe }}{%- endif -%}
 | |
|         </a></h1>
 | |
| 
 | |
|         {%- elif config.extra.textlogo -%}
 | |
|         <h1><a href="{{ get_url(path="/", lang=lang) }}{%- if uglyurls -%}
 | |
|         {%- if lang == config.default_language -%}/{%- endif -%}
 | |
|         index.html{%- endif -%}" title="{{config.title}}">{{ config.extra.textlogo | safe }}</a></h1>
 | |
|         {%- elif config.title -%}
 | |
|         <h1><a href="{{ get_url(path="/", lang=lang) }}{%- if uglyurls %}/index.html{%- endif %}" title="{{config.title}}">{{ config.title | safe }}</a></h1>
 | |
|         {%- endif -%}
 | |
|       </div>
 | |
|       <div>
 | |
| 
 | |
|         <div>
 | |
|           <ul>
 | |
| 
 | |
|             {%- set js_switcher=config.extra.js_switcher | default(value=true) %}
 | |
|             {%- if config.extra.menu %}
 | |
|               {%- for i in config.extra.menu -%}
 | |
|                 <li><a{%- if i.size %} class="{{ i.size }}"{% endif %} href="{%- if i.url is matching("^http[s]?://") %}{{ i.url }}{%- else -%}{{ get_url(path=i.url, lang=lang, trailing_slash=i.slash) }}{%- if i.slash and uglyurls %}index.html{%- endif %}{%- endif %}"{% if i.blank %} target="_blank"{% endif %}>
 | |
|                 {%- if lang != config.default_language %} {{ macros::translate(key=i.name|safe, default=i.name|safe, i18n=i18n) }} {% else %} {{ i.name | safe }} {% endif -%}
 | |
|                 </a></li>
 | |
|               {%- endfor -%}
 | |
|             {%- endif -%}
 | |
| 
 | |
|             {%- if config.languages | length > 0 %}
 | |
|             <li><div class="dropdown"><i class="svgs world" type="reset"></i>
 | |
|               {%- if current_url %}
 | |
|                 <div class="dropdown-content">
 | |
|                 <span>{{ macros::translate(key="language_name", default="lang_name", i18n=i18n) }}</span>
 | |
|                 {%- for lcode,language in config.languages -%}
 | |
|                   {%- set i18n_menu = load_data(path="i18n/" ~ lcode ~ '.toml', required=false) -%}
 | |
|                   {%- if not i18n_menu -%}{%- set i18n_menu = load_data(path="themes/abridge/i18n/" ~ lcode ~ ".toml", required=false) -%}{%- endif %}
 | |
|                   {%- if lang != lcode -%}
 | |
|                     {%- if lcode == config.default_language -%}
 | |
|                     <a href="{{ current_url | replace(from='/' ~ lang ~ '/', to = '/') | safe }}{%- if uglyurls %}index.html{%- endif %}">{{ macros::translate(key="language_name", default="language_name", i18n=i18n_menu) }}</a>
 | |
|                     {%- elif lang == config.default_language -%}
 | |
|                     <a href="{{ current_url | replace(from=config.base_url, to=config.base_url ~ "/" ~ lcode) | safe }}{%- if uglyurls %}index.html{%- endif %}">{{ macros::translate(key="language_name", default="language_name", i18n=i18n_menu) }}</a>
 | |
|                     {%- else -%}
 | |
|                     <a href="{{ current_url | replace(from='/' ~ lang ~ '/', to = '/' ~ lcode ~ '/') | safe }}{%- if uglyurls %}index.html{%- endif %}">{{ macros::translate(key="language_name", default="language_name", i18n=i18n_menu) }}</a>
 | |
|                     {%- endif -%}
 | |
|                   {%- endif -%}
 | |
|                 {%- endfor -%}
 | |
|                 </div>
 | |
|               {%- endif %}
 | |
|             </div></li>
 | |
|             {%- endif %}
 | |
| 
 | |
|             {%- if js_switcher -%}
 | |
|               {%- set icon_adjust=config.extra.icon_adjust | default(value="svgs adjust") -%}
 | |
|               {%- if icon_adjust -%}<li><i type="reset" id="mode" class="js {{ icon_adjust }}"></i>{%- else -%}<i type="reset" id="mode" class="js mode">☀</i></li>{%- endif -%}
 | |
|             {%- endif -%}
 | |
| 
 | |
|           </ul>
 | |
|         </div>
 | |
| 
 | |
|         <div>
 | |
|           {%- if config.build_search_index %}
 | |
|           {%- set icon_search=config.extra.icon_search | default(value="svgs svgm search") %}
 | |
|           <div>
 | |
|             <form autocomplete=off class="js" name="goSearch" id="searchbox">
 | |
|               <div class="searchd">
 | |
|                 <input id="searchinput" type="text" placeholder="{{ macros::translate(key="Search", default="Search", i18n=i18n) }}" title="Search"{% if config.extra.search_library %}{% if config.extra.search_library == "stork" %} data-stork="stork" {% endif %}{% endif %} />
 | |
|                 <button type="submit" title="Search" class="{%- if icon_search -%}{{ icon_search }}{%- else -%}si{%- endif -%}">{%- if not icon_search -%}⌕{%- endif -%}</button>
 | |
|               </div>
 | |
|               <div class="results"><div id="suggestions"{% if config.extra.search_library %}{% if config.extra.search_library == "stork" %} data-stork="stork-output" {% endif %}{% endif %}></div></div>
 | |
|             </form>
 | |
|           </div>
 | |
|           {%- endif %}
 | |
|         </div>
 | |
| 
 | |
|       </div>
 | |
|     </nav>
 | |
|     {%- if config.extra.sitedesc %}
 | |
|     {%- if config.description %}
 | |
|     <div class="desc">{{ config.description }}</div>
 | |
|     {%- endif %}
 | |
|     {%- endif %}
 | |
|     {%- if config.extra.headhr %}
 | |
|     <hr />
 | |
|     {%- endif %}
 | |
|   </header>
 | |
| {%- endblock header %}
 | |
|   <main>
 | |
|   {%- block content %}
 | |
|   {%- endblock content %}
 | |
|   </main>
 | |
| {%- block footer %}
 | |
|   <footer>
 | |
|     {%- if config.extra.foothr %}
 | |
|     <hr />
 | |
|     {%- endif %}
 | |
|     <div class="c">
 | |
|       {%- include "partials/social.html" %}
 | |
| 
 | |
| 
 | |
| 
 | |
|       {%- if config.extra.menu_footer %}
 | |
|       <nav class="vpad">
 | |
|         {%- for i in config.extra.menu_footer -%}
 | |
|         {%- if i.url != "sitemap.xml" %}
 | |
|         {%- set furl=get_url(path=i.url, lang=lang, trailing_slash=i.slash) %}
 | |
|         {%- else %}
 | |
|         {%- set furl=get_url(path=i.url, trailing_slash=i.slash) %}
 | |
|         {%- endif %}
 | |
|         <a class="rpad{%- if i.size %} {{ i.size }}{% endif %}" href="{{ furl | safe }}{%- if i.slash and uglyurls %}index.html{%- endif %}"{% if i.blank %} target="_blank"{% endif %}>{% if lang != config.default_language %} {{ macros::translate(key=i.name|safe, default=i.name|safe, i18n=i18n) }} {% else %} {{ i.name | safe }} {% endif %}</a>
 | |
|         {%- endfor %}
 | |
|       </nav>
 | |
|       {%- endif %}
 | |
| 
 | |
|       {#- Copyright START #}
 | |
|       {%- if config.extra.copyright | default(value=true) -%}
 | |
|       {%- set current_year = now() | date(format="%Y") %}
 | |
|       {%- set current_year = '<span id="year">' ~ current_year ~ '</span>' %}
 | |
| 
 | |
|         {%- if config.extra.copyright_override -%}
 | |
|           {%- if lang != config.default_language %}
 | |
|             {%- set copyright_string = macros::translate(key='copyright_override', default='© $CURRENT_YEAR $SITE_TITLE', i18n=i18n) | replace(from="$CURRENT_YEAR", to=current_year) | replace(from="$SITE_TITLE", to=config.title) %}
 | |
|           {% else %}
 | |
|             {%- set copyright_string = config.extra.copyright_override | replace(from="$CURRENT_YEAR", to=current_year) | replace(from="$SITE_TITLE", to=config.title) %}
 | |
|           {% endif -%}
 | |
|         {%- else -%}
 | |
|           {%- set copyright_string = "© " ~ current_year ~ " " ~ config.title %}
 | |
|         {%- endif %}
 | |
|       <p{%- if config.extra.footer_size %} class="{{ config.extra.footer_size }}"{% endif %}> {{ copyright_string | safe }}</p>
 | |
|       {%- endif -%}
 | |
|       {#- Copyright END #}
 | |
| 
 | |
|       {%- if config.extra.footer_credit | default(value=true) %}
 | |
|       {%- if config.extra.footer_credit_override %}
 | |
|       {{ config.extra.footer_credit_override | safe }}
 | |
|       {%- else %}
 | |
|       <p{%- if config.extra.footer_size %} class="{{ config.extra.footer_size }}"{% endif %}>{{ macros::translate(key="Powered_by", default="Powered by", i18n=i18n) }} <a href="https://www.getzola.org/" target="_blank">Zola</a> {{ macros::translate(key="and", default="and", i18n=i18n) }} <a href="https://github.com/jieiku/abridge/" target="_blank">Abridge</a></p>
 | |
|       {%- endif %}
 | |
|       {%- endif %}
 | |
|     </div>
 | |
|   </footer>
 | |
| {%- endblock footer %}
 | |
| {%- block gotop %}
 | |
| {%- endblock gotop %}
 | |
| </body>
 | |
| </html>
 |