mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-05 08:56:09 +00:00
* website: started new design (#6279)
* upload assets & change font to gt-walsheim
* fix language issue in learn-more page
* design cover for desktop
* website: home page sections (#6285)
* upload assets & change font to gt-walsheim
* fix language issue in learn-more page
* design cover for desktop
* add section 2, 3 & 4 for desktop
---------
Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
* website: more sections (#6289)
* upload assets & change font to gt-walsheim
* fix language issue in learn-more page
* design cover for desktop
* add section 2, 3 & 4 for desktop
* website: directory page (#6283)
* website: directory page
* core: use markdown in directory entries
* render markdown on directory page
* update markdown
* toggle secrets on click
* update listings asynchronously
* add group links to the listing
* cleanup
* better directory layout with pagination
* script to run website
* update page navigation
* search
* readable markdown colors, better "read less"
* core: atomic update of directory listings, to avoid files unavailable
* fix symlink, sort entries on page with new first
* update listings every 15 min, add activeAt time
* fix sorting in the page and listing url
* replace simplex:/ links on desktop
* website: fix search in directory
* add section 5 for Desktop
* android, desktop: update dependency
* website(directory): add bot address, open simplex links in new tab, improve error handling
* made cover responsive
* directory: show only recent groups in active/new tabs, page improvements (#6290)
* directory: show only recent groups as active or new
* round times
* sorting order
* fix links
* improve
* directory: disable search autocomplete
* directory: show approximate activity/creation time
* scripts: suffix deb packages with distribution codename (#6273)
* directory: show default image in case of loading error (can happen when group is delisted)
* website: add directory to nav bar, fixes (#6293)
* website: add directory to nav bar, fixes
* docs: update readme
* add responsiveness
* add socials
* remove white redundent line
---------
Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
Co-authored-by: sh <37271604+shumvgolove@users.noreply.github.com>
* website: navbar (#6307)
* add navbar for desktop
* website: complete navbar (#6313)
* website: desktop layout for section 2 3 4 5 (#6317)
* desktop layout for section 2 3 4 5
* improve mobile layout
* resolve navbar issues
* delete unwanted svg
* cover layout
* update section 5 for mobile
* section 5 desktop
* website: improve layout & section 6 (#6321)
* improve layout
* add section 6
* website: promoted groups on home page (#6323)
* website: promoted groups on home page
* use local images when fallback listing is used, replace image on download error with group icon
* welcome message
* more links
* rename CSS classes
* website: adding footer (#6326)
* adding footer
* add footer
* update nav
* improve spaces in .group-images
* quick fix
* add community vouchers page
* fix footer problem
* disable pull to refresh
* address bar now hide in safari
* website: fallback group images (#6342)
* website: new things (#6344)
* add learn_more.md section in /learn-more page
* fix cover swiping bug & improve gradient
* fix click bug of group-images
* website: improve layout (#6361)
* website: improve layout
* fix footer for iphone
* add light mode (#6368)
* website: important updates (#6375)
* design improvements for desktop
* design improvements for mobile
* same navbar for all pages
* add comparison table
* update z-index
* quick fix
* add glassy effect to nav
* quick improvement
* favicon
* quick fix
* update nav glassy effect
* quick nav update
* improve mobile layout
* improve mobile layout
* improve mobile layout
* rotate gradients for mobile
* safearea
* almost remove background from nav
---------
Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
* website: cover updates (#6380)
* remove background from nav
* add publications
* add security btns
* quick fixes
* quick fixes
* add all btns & made them responsive
* add hash & update pages
* Revert "remove background from nav"
This reverts commit ee27d17484.
* fix web.sh
---------
Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
* website: translation strings (#6384)
* add translation strings for home page
* add translation strings for comparison table
* update strings
* website: update text (#6387)
* website: update text
* website: additional translation strings
* comparison table
* update colors
* update glossary
* website: fix glossary capitalize issue (#6388)
* fix glossary capitalize issue
* fix gradient scroll issue
* fix gradient scroll issue
* website: community vouchers and token (#6389)
* website: community vouchers and token
* website: change translation string
* update name
* website: update translations, fonts, fix language navigation (#6395)
* website: update translations
* website: update fonts, fix language navigation
* website: update texts (#6404)
* website: update texts
* website: update texts
* update the text
* website: update texts
* update
* web: mobile layout / safe area (#6408)
* improve status bar / safe area coloring
* improve status coloring
* website: popup to mint nft (WIP) (#6410)
* website: popup to mint nft (WIP)
* update dApp
* minting works
* update dApp
* update
* update app
* improve
* update network to arbitrum
* update copyright
* website: layout fixes, token button (#6415)
* update images, add note about arbitrum
* update colors
* website: update tokens, switch dApp to Ethereum
---------
Co-authored-by: M. Sarmad Qadeer <MSarmadQadeer@gmail.com>
Co-authored-by: sh <37271604+shumvgolove@users.noreply.github.com>
93 lines
3.6 KiB
HTML
93 lines
3.6 KiB
HTML
---
|
|
layout: layouts/main.html
|
|
title: "SimpleX blog: the latest news"
|
|
description: "SimpleX Chat - a private and encrypted messenger without any user IDs (not even random ones)! Make a
|
|
private connection via link / QR code to send messages and make calls."
|
|
path: /blog
|
|
templateEngineOverride: njk
|
|
active_blog: true
|
|
---
|
|
{% block css_links %}
|
|
<style>
|
|
#blog-list ul li {
|
|
list-style: disc;
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
#blog-list ul {
|
|
list-style-position: inside;
|
|
overflow: auto;
|
|
}
|
|
|
|
#blog-list ul li {
|
|
-webkit-margin-start: 1.1rem;
|
|
color: #000;
|
|
}
|
|
|
|
.dark #blog-list ul li {
|
|
color: #fff;
|
|
}
|
|
|
|
#blog-list ul li::marker {
|
|
color: black;
|
|
}
|
|
|
|
.dark #blog-list ul li::marker {
|
|
color: white;
|
|
}
|
|
</style>
|
|
{% endblock %}
|
|
|
|
<section class="py-10 px-5 mt-[66px]" id="blog-list">
|
|
<div class="container">
|
|
<h1 class="text-[38px] text-center font-bold mb-9">Latest news</h1>
|
|
|
|
{% for blog in collections.blogs %}
|
|
{% if not(blog.data.draft) %}
|
|
<article
|
|
class="w-full flex flex-col items-start md:flex-row rounded-[4px] overflow-hidden shadow-[0px_20px_30px_rgba(0,0,0,0.12)] dark:shadow-none bg-white dark:bg-[#0B2A59] mb-8">
|
|
<div
|
|
class="min-h-[200px] h-[inherit] self-stretch md:w-[168px] bg-[#DBEEFF] dark:bg-[#071C46] flex items-center justify-center flex-[1] relative">
|
|
<div class="min-h-[inherit] h-full w-full flex items-end px-4 pt-4 justify-center relative">
|
|
{% if blog.data.image %}
|
|
{% if blog.data.imageBottom %}
|
|
<img class="w-full max-w-[240px] h-auto" src="{{ blog.data.image }}" alt="" srcset="" />
|
|
{% elif blog.data.imageWide %}
|
|
<img class="mb-4 self-center w-full h-auto" src="{{ blog.data.image }}" alt="" srcset="" />
|
|
{% else %}
|
|
<img class="mb-4 self-center w-full max-w-[240px] h-auto" src="{{ blog.data.image }}" alt=""
|
|
srcset="" />
|
|
{% endif %}
|
|
{% else %}
|
|
<img class="h-[44px] self-center dark:hidden" src="/img/new/logo-symbol-light.svg" alt=""
|
|
srcset="" />
|
|
<img class="h-[44px] self-center hidden dark:inline-block" src="/img/new/logo-symbol-dark.svg"
|
|
alt="" srcset="" />
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div class="p-6 md:py-8 flex-[2.5] flex flex-col">
|
|
<div>
|
|
<h2 class="text-grey-black dark:text-white !text-lg md:!text-xl font-bold">
|
|
<a href="{{ blog.url }}">{{ blog.data.title | safe }}</a>
|
|
</h2>
|
|
<p class="text-sm text-[#A8B0B4] font-medium mt-2 mb-4 tracking-[0.03em]">
|
|
{{ blog.data.date.toUTCString().split(' ').slice(1, 4).join(' ') }}
|
|
</p>
|
|
{% if blog.data.previewBody %}
|
|
<div class="mb-4 dark:text-white">
|
|
{% include blog.data.previewBody %}
|
|
</div>
|
|
{% elif blog.data.preview %}
|
|
<p class="dark:text-white mb-4">{{ blog.data.preview | safe }}</p>
|
|
{% endif %}
|
|
</div>
|
|
<a class="block text-primary-light dark:text-[#70F0F9] text-base font-medium tracking-[0.03em] mt-auto"
|
|
href="{{ blog.url }}">Read More</a>
|
|
</div>
|
|
</article>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</section> |