mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 12:19:54 +00:00
* website: add fontmatter & improve image URLs where necessary * website: add docs to website * website: add prismjs for code highlighting * website: change npm install position in web.sh * website: fix an image URL in lang/cs/README.md * website: improve image paths in lang/cs/translations.md * website: add responsiveness & improve stylings of docs * website: add dir to navbar in blog & docs * website: remove scroll in mobile dropdown menu * website: remove rfcs & add guide docs to website * website: remove file renaming script from web.sh * website: add menu to docs in nav * website: add hash list & add scroll to headers * website: customize docs frontmatter through JS * website: remove supported_languages.json * website: move merge_translations.js to JS folder * website: add the following changes to docs - add frontmatter to new doc merged from master - add ignoreForWeb property to frontmatter of README.md docs * website: remove package-lock.json from .gitignore * website: add package-lock.json from .gitignore * website: add no docs message to docs dropdown * website: improve the sidebar of docs * website: add revision date to docs * website: add script to add version to docs frontmatter * website: add layout to display message in docs if its version is old * website: improve nav responsiveness * website: remove frontmatter form main README & rfcs * website: remove rfcs from website folder * website: add ignore condition for rfcs in .eleventy * website: remove frontmatter from lang README docs * website: remove README from website's lang docs * website: add guides menu in nav * website: following changes - add docs_dropdown.json - extend reference menu in nav - remove docs menu from nav * website: fix in docs sidebar * website: revert main docs README.md files * website: revert main docs README.md files * website: move scripts out of js that are for build * website: remove displayAt form guide docs * website: create a docs_sidebar.json & shift to that approach * update navigation * website: set navbar * website: add icons to external links * website: change the approach for docs sidebar creation * website: update docs template * website: add some strings to en.json and map them accordingly * remove icon --------- Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<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 %}>
|
|
|
|
<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" />
|
|
<meta http-equiv="onion-location" content="{% cfg 'onionLocation' %}{{ permalink }}" />
|
|
<meta property="og:url" content="{% cfg 'siteLocation' %}{{ permalink }}" />
|
|
<meta property="og:type" content="article" />
|
|
<meta property="og:title" content="{{ title }}" />
|
|
{% if image %}
|
|
<meta property="og:image" content="{% cfg 'siteLocation' %}/blog/{{ image }}" />
|
|
{% else %}
|
|
<meta property="og:image" content="{% cfg 'siteLocation' %}/img/share_simplex.png" />
|
|
{% 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" />
|
|
<link rel="stylesheet" href="/css/prism.min.css"/>
|
|
<link href="/css/style.css" rel="stylesheet" />
|
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
|
</head>
|
|
|
|
<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" %}
|
|
<script src="/js/prism.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|