-
Notifications
You must be signed in to change notification settings - Fork 1
/
news.html
105 lines (102 loc) · 4.56 KB
/
news.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Import CSS and Scripts-->
<script>
let theme = localStorage.getItem('theme');
if (theme === null || theme === " ") theme = 'auto';
localStorage.setItem('theme', `${theme}`)
if (theme === 'auto') document.documentElement.removeAttribute("data-theme");
else document.documentElement.setAttribute("data-theme", `${theme}`);
</script>
<script src="/scripts/theme.js"></script>
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/theme.css">
<!-- Scale page to display width -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Page Title -->
<title>News - Signal Update Info</title>
<!-- Favicons -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicons/favicon-16x16.png">
<!-- Meta -->
<meta name="title" property="og:title" content="News" />
<meta name="description" property="og:description" content="Signal news and updates.
We post about new and upcoming features to keep you up-to-date with your favorite E2EE messaging app." />
<meta name="keywords" content="signal update info,signal updates,signal" />
<meta name="image" property="og:image" content="https://signalupdateinfo.com/assets/images/ogimage.jpg" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://signalupdateinfo.com" />
</head>
<body>
<!-- Site Header and Navigation-->
<header>
<a href="/">
<h1 class="site-title">Signal Update Info</h1>
</a>
<img alt="Auto Theme Icon" class="theme-button-desktop" id="theme-button-desktop"
src="/assets/images/icons/theme-auto.svg">
<div class="site-navigation">
<a href="/releases.html">
Releases
</a>
<a class="selected-page" href="">
News
</a>
<a href="/about.html">
About
</a>
<a href="/donate.html">
Donate
</a>
</div>
</header>
<!-- Main Page -->
<main>
<div class="card-container">
<div class="card">
<h1>News</h1>
<div class="news-card-grid">
<a class="noshow" href="/news/chat-folders.html">
<div class="article-preview">
<h1>Chat <br> Folders</h1>
<h3>Published Oct 16 2024</h3>
</div>
</a>
<a class="noshow" href="/news/faster-message-edits.html">
<div class="article-preview">
<h1>Faster Message <br> Edits</h1>
<h3>Published May 22 2024</h3>
</div>
</a>
<a class="noshow" href="/news/cloud-backups.html">
<div class="article-preview">
<h1>Cloud <br> Backups</h1>
<h3>Published Feb 1 2024</h3>
</div>
</a>
</div>
</div>
</div>
</main>
<div class="spacer"></div>
<footer>
<div class="footer-button-container">
<div class="theme-button-mobile " id="theme-button-mobile">
<p>Theme:</p>
<img alt="Auto Theme Icon" class="theme-icon-mobile" id="theme-icon-mobile"
src="/assets/images/icons/theme-auto.svg">
</div>
<a class="footer-button" rel="me" target="_blank" href="https://mastodon.world/@SignalUpdateInfo"><img
alt="Mastodon Icon" src="/assets/images/icons/mastodon-logo.svg">Mastodon</a>
<a class="footer-button" target="_blank" href="https://github.com/tedgravlin/signal-update-info"><img
alt="GitHub Icon" src="/assets/images/icons/github-logo.svg">GitHub</a>
<a class="footer-button" rel="me" target="_blank" href="https://signalupdateinfo.com/rss/feed.xml"><img
alt="RSS Icon" src="/assets/images/icons/rss-logo.svg">RSS</a>
</div>
<p class="disclaimer">Signal Update Info is not affiliated with Signal and is not an official Signal website.
</p>
</footer>
</body>
</html>