2022-09-10 14:26:21 +05:00
|
|
|
<!DOCTYPE html>
|
2023-04-01 18:31:15 +05:00
|
|
|
<html lang="{{ page.url | getlang }}"
|
|
|
|
{% for language in languages.languages %}
|
|
|
|
{% if language.label == page.url | getlang %}
|
|
|
|
dir="{{ "rtl" if language.rtl else "ltr" }}"
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}>
|
2022-09-10 14:26:21 +05:00
|
|
|
|
2022-11-08 11:04:02 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>SimpleX blog: {{ title }}</title>
|
|
|
|
<meta name="Content-Type" content="text/html;charset=utf-8" />
|
2022-11-12 12:04:23 +00:00
|
|
|
<meta http-equiv="onion-location" content="{% cfg 'onionLocation' %}{{ permalink }}" />
|
|
|
|
<meta property="og:url" content="{% cfg 'siteLocation' %}{{ permalink }}" />
|
2022-11-08 11:04:02 +00:00
|
|
|
<meta property="og:type" content="article" />
|
|
|
|
<meta property="og:title" content="{{ title }}" />
|
|
|
|
{% if image %}
|
2022-11-12 12:04:23 +00:00
|
|
|
<meta property="og:image" content="{% cfg 'siteLocation' %}/blog/{{ image }}" />
|
2022-11-08 11:04:02 +00:00
|
|
|
{% else %}
|
2022-11-12 12:04:23 +00:00
|
|
|
<meta property="og:image" content="{% cfg 'siteLocation' %}/img/share_simplex.png" />
|
2022-11-08 11:04:02 +00:00
|
|
|
{% endif %}
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon.ico" />
|
|
|
|
<link href="/css/tailwind.css" rel="stylesheet" />
|
|
|
|
<link rel="stylesheet" href="/css/blog.css" />
|
2023-05-01 02:31:23 +05:00
|
|
|
<link rel="stylesheet" href="/css/prism.min.css"/>
|
2022-11-08 11:04:02 +00:00
|
|
|
<link href="/css/style.css" rel="stylesheet" />
|
2022-11-08 17:42:39 +00:00
|
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
2022-11-08 11:04:02 +00:00
|
|
|
</head>
|
2022-09-10 14:26:21 +05:00
|
|
|
|
2022-11-08 11:04:02 +00:00
|
|
|
<body class="bg-[#F3F6F7] dark:bg-[#0C0B13]">
|
|
|
|
{% include "navbar.html" %}
|
|
|
|
|
|
|
|
<div class="container px-5">
|
|
|
|
<a class="inline-block text-grey-black dark:text-white my-5 underline underline-offset-2" href="/blog">< Back to list</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<section id="article" class="container mb-[75px] bg-white dark:bg-[#17203D] px-5">
|
|
|
|
<div class="py-6 md:p-[60px]">{{ content | safe }}</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{% include "footer.html" %}
|
2023-05-01 02:31:23 +05:00
|
|
|
<script src="/js/prism.min.js"></script>
|
2022-11-08 11:04:02 +00:00
|
|
|
</body>
|
2022-09-10 14:26:21 +05:00
|
|
|
|
|
|
|
</html>
|