add article layout & give that layout to blogs

This commit is contained in:
M Sarmad Qadeer
2022-07-31 15:13:37 +05:00
parent 6e4f755d36
commit ddc7954d02
16 changed files with 30 additions and 1 deletions
+1
View File
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "Simplex Chat"
date: 2020-10-22
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "Announcing SimpleX Chat Prototype!"
date: 2021-05-12
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX announces SimpleX Chat v0.4"
date: 2021-09-14
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX announces SimpleX Chat v0.5"
date: 2021-12-08
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX announces SimpleX Chat v1"
date: 2022-01-12
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX announces SimpleX Chat public beta for iOS"
date: 2022-02-14
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX announces SimpleX Chat mobile apps for iOS and Android"
date: 2022-03-08
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "Instant notifications for SimpleX Chat mobile apps"
date: 2022-04-04
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX Chat v2.0 - sending images and files in mobile apps"
date: 2022-05-11
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX Chat v2.1 - better conversation privacy"
date: 2022-05-24
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX Chat v2.2 - the first messaging platform without user identities - 100% private by design!"
date: 2022-06-04
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX announces SimpleX Chat v3"
date: 2022-07-11
---
@@ -1,4 +1,5 @@
---
layout: layouts/article.html
title: "SimpleX Chat v3.1-beta is released"
date: 2022-07-23
---
+13
View File
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=\, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="/css/blog.css">
</head>
<body>
</body>
</html>
+1 -1
View File
@@ -4,7 +4,7 @@
<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>Document</title>
<title>Blogs</title>
</head>
<body>
{% for blog in collections.blogs %}
+3
View File
@@ -0,0 +1,3 @@
body{
background-color: yellowgreen;
}