mirror of
				https://github.com/pawroman/zola-theme-terminimal.git
				synced 2025-10-31 16:10:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			573 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			573 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% macro title(page_title, main_title) %}
 | |
|     {%- if config.extra.page_titles and config.extra.page_titles == "combined" -%}
 | |
|         {%- if page_title -%}
 | |
|             {{ page_title }} | {{ main_title }}
 | |
|         {%- else -%}
 | |
|             {{ main_title }}
 | |
|         {%- endif -%}
 | |
|     {%- elif config.extra.page_titles and config.extra.page_titles == "page_only" -%}
 | |
|         {%- if page_title -%}
 | |
|             {{ page_title }}
 | |
|         {%- else -%}
 | |
|             {{ main_title }}
 | |
|         {%- endif -%}
 | |
|     {%- else -%}
 | |
|         {{ main_title }}
 | |
|     {%- endif -%}
 | |
| {% endmacro title %}
 | 
