mirror of
				https://github.com/privacyguides/privacyguides.org.git
				synced 2025-11-04 05:17:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% block extrahead %}
 | 
						|
  <link rel="preload" href="{{ 'assets/brand/WOFF/bagnard/Bagnard.woff' | url }}" as="font" type="font/woff" crossorigin>
 | 
						|
  <link rel="stylesheet" href="{{ 'assets/stylesheets/blog.css' | url }}">
 | 
						|
{% endblock %}
 | 
						|
{% block tabs %}
 | 
						|
  {{ super() }}
 | 
						|
  <style>.md-content > .md-typeset h1{visibility:hidden;font-size:0;}</style>
 | 
						|
  <section class="mdx-container">
 | 
						|
    <div class="md-grid md-typeset">
 | 
						|
      <div class="mdx-hero">
 | 
						|
        <div class="mdx-hero__content">
 | 
						|
          <h1>{{ page.meta.title }}</h1>
 | 
						|
          <p>{{ page.meta.created }} | {{ page.meta.author }}</p>
 | 
						|
        </div>
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </section>
 | 
						|
{% endblock %}
 | 
						|
{% block content %}
 | 
						|
  {% if page.meta.image %}
 | 
						|
    <img src="{{ page.meta.image | url }}"> 
 | 
						|
  {% endif %}
 | 
						|
  <a href="{{ '/feed_rss_created.xml' | url }}" title="Open RSS Feed" class="md-content__button md-icon">
 | 
						|
    {% include ".icons/material/rss.svg" %}
 | 
						|
  </a>
 | 
						|
  {% if "tags" in config.plugins %}
 | 
						|
    {% include "partials/tags.html" %}
 | 
						|
  {% endif %}
 | 
						|
  {% if not "\x3ch1" in page.content %}
 | 
						|
    <h1>{{ page.title | d(config.site_name, true)}}</h1>
 | 
						|
  {% endif %}
 | 
						|
  {{ page.content }}
 | 
						|
{% endblock %}
 |