Skip to content
This repository was archived by the owner on Aug 14, 2021. It is now read-only.

Commit a36b2eb

Browse files
committed
feat: Set meta description on each page
1 parent 8cc28e4 commit a36b2eb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/default/layouts/default.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<title>{{#ifCond model.name '==' project.name}}{{project.name}}{{else}}{{model.name}} | {{project.name}}{{/ifCond}}</title>
7-
<meta name="description" content="">
7+
<meta name="description" content="Documentation for {{project.name}}">
88
<meta name="viewport" content="width=device-width, initial-scale=1">
99

1010
<link rel="stylesheet" href="{{relativeURL "assets/css/main.css"}}">
@@ -47,4 +47,4 @@
4747
{{> analytics}}
4848

4949
</body>
50-
</html>
50+
</html>

src/minimal/layouts/default.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<title>{{model.name}} | {{project.name}}</title>
7-
<meta name="description" content="">
7+
<meta name="description" content="Documentation for {{project.name}}">
88
<meta name="viewport" content="width=device-width, initial-scale=1">
99
<style type="text/css">{{ CSS }}</style>
1010
</head>

0 commit comments

Comments
 (0)