Skip to content

Commit f9b0c5f

Browse files
committed
feat: add newsletter subscription page
1 parent 39c5d0c commit f9b0c5f

18 files changed

+158
-397
lines changed

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Site settings
2-
title: Blog | thoughtram - Extend your memory
2+
title: Articles by thoughtram
33
44
author: thoughtram
55
description: "We write about technical things that we are working with and upcoming events that we are either running or attending to. Read about our latest thoughts."

_layouts/blog-series.html

-80
This file was deleted.

_layouts/categories.html

-84
This file was deleted.

_layouts/default.html

+5-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="description" content="We write about technical things that we are working with and upcoming events that we are either running or attending to. Read about our latest thoughts.">
6+
<meta name="description" content="{{ page.description || 'We write about technical things that we are working with and upcoming events that we are either running or attending to. Read about our latest thoughts.'}}">
77
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
<title>Articles by thoughtram</title>
8+
<title>{{ page.title || site.title }}</title>
99
<meta name="google-site-verification" content="o9eGPEgIETEqYGombq7NiQuBIB_qa6gz1yAL7PxKyK0">
1010

1111
<!-- Add to homescreen for Chrome on Android -->
@@ -25,19 +25,18 @@
2525

2626
<meta property="og:locale" content="en_US">
2727
<meta property="og:type" content="website">
28-
<meta property="og:description" content="We write about technical things that we are working with and upcoming events that we are either running or attending to. Read about our latest thoughts.">
28+
<meta property="og:description" content="{{ page.description || 'We write about technical things that we are working with and upcoming events that we are either running or attending to. Read about our latest thoughts.'}}">
2929
<meta property="og:url" content="http://blog.thoughtram.io">
30-
<meta property="og:site_name" content="Articles by thoughtram">
3130
<meta property="og:image" content="http://blog.thoughtram.io/images/thoughtram-brain-og.png">
3231

3332
<meta property="twitter:card" content="summary_large_image">
34-
<meta property="twitter:title" content="Articles by thoughtram">
33+
<meta property="twitter:title" content="{{page.title || site.title}}">
3534
<meta property="twitter:site" content="thoughtram">
3635

3736
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
3837
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}" type="text/css">
3938
</head>
40-
<body>
39+
<body class="thtrm-blog">
4140
<!-- Add your site or app content here -->
4241

4342
<!--[if lt IE 10]>

_layouts/exploring-angular-2.html

-73
This file was deleted.

_layouts/post-frame.html

-18
This file was deleted.

_layouts/post-layout.html

-88
This file was deleted.

0 commit comments

Comments
 (0)