118 lines
4.5 KiB
HTML
118 lines
4.5 KiB
HTML
{%- if page %}
|
|
{%- set resource = page %}
|
|
{%- elif section %}
|
|
{%- set resource = section %}
|
|
{%- endif %}
|
|
|
|
<!DOCTYPE html>
|
|
{%- set rtl_langs = ["ar", "arc", "dv", "fa", "ha", "he", "khw", "ks", "ku", "ps", "ur", "yi"] -%}
|
|
<html lang="{{ lang }}" {%- if lang in rtl_langs -%} dir="rtl" {%- endif -%}>
|
|
|
|
<head>
|
|
<meta name="robots" content="noindex">
|
|
<!-- <script>-->
|
|
<!-- var password = "tutorial";-->
|
|
<!-- (function passcodeprotect() {-->
|
|
<!-- var passcode = prompt("Enter PassCode");-->
|
|
<!-- while (passcode !== admin) {-->
|
|
<!-- alert("Incorrect PassCode");-->
|
|
<!-- return passcodeprotect();-->
|
|
<!-- }-->
|
|
<!-- }());-->
|
|
<!-- alert('Welcome To The TP..!');-->
|
|
<!-- </script>-->
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
|
|
|
<meta name="description" content="{{ resource.description }}">
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;700&display=swap"
|
|
rel="stylesheet">
|
|
|
|
{% block rss %}
|
|
<link rel="alternate" type="application/rss+xml" title="RSS"
|
|
href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
|
|
{% endblock %}
|
|
|
|
<link rel="canonical" href="{{ config.base_url | safe }}{{ resource.path | safe }}">
|
|
|
|
{%- set preview_image = 'images/screenshots/prague.jpg' -%}
|
|
{%- if resource.extra.preview_image -%}
|
|
{%- set preview_image = resource.extra.preview_image -%}
|
|
{%- elif resource.assets %}
|
|
{%- set basename = resource.assets[0] | split(pat='/') | last %}
|
|
{%- if basename is ending_with('.jpg') or basename is ending_with('.jpeg') or basename is ending_with('.png') or basename is ending_with('.webp') %}
|
|
{%- set preview_image = resource.path ~ basename -%}
|
|
{%- endif %}
|
|
{%- endif %}
|
|
<meta property="og:image" content="{{ get_url(path=preview_image) }}">
|
|
<meta property="og:url" content="{{ current_url | safe }}">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="{{ resource.title }}">
|
|
{%- if resource.description -%}
|
|
<meta property="og:description" content="{{ resource.description }}">
|
|
{%- endif -%}
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="{{ resource.title }}">
|
|
{%- if resource.description -%}
|
|
<meta name="twitter:description" content="{{ resource.description }}">
|
|
{%- endif -%}
|
|
|
|
<meta name="apple-itunes-app" content="app-id=1567437057">
|
|
<meta name="wikidata" content="Q107078602">
|
|
|
|
{% if resource.date -%}
|
|
<meta property="article:published_time" content="{{ resource.date }}">
|
|
{%- endif -%}
|
|
|
|
<meta name="generator" content="Zola">
|
|
|
|
{%- block meta -%}{%- endblock %}
|
|
|
|
<link href="{{ get_url(path="main.css", cachebust=true) }}" rel="stylesheet" type="text/css">
|
|
|
|
<title>{{ resource.title }}</title>
|
|
|
|
{%- if lang == config.default_language %}
|
|
{% include 'components/language_redirect.html' %}
|
|
{% endif -%}
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lato:wght@300&display=swap"
|
|
rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
|
|
</head>
|
|
|
|
<body class="light">
|
|
<div class="wrapper">
|
|
<header class="header">
|
|
{% include 'common/header.html' %}
|
|
</header>
|
|
|
|
<main class="main">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
{% include 'common/footer.html' %}
|
|
</footer>
|
|
</div>
|
|
{% include 'shortcodes/acordeon.html' %}
|
|
{% include 'shortcodes/switch-theme.html' %}
|
|
{% include 'shortcodes/header-switch.html' %}
|
|
{% include 'shortcodes/animation-section-js.html' %}
|
|
{% include 'shortcodes/paralax.html' %}
|
|
</body>
|
|
|
|
</html>
|