Commit ad46f52 1 parent 71b3def commit ad46f52 Copy full SHA for ad46f52
File tree 2 files changed +9
-14
lines changed
2 files changed +9
-14
lines changed Original file line number Diff line number Diff line change 1
1
const path = require ( 'path' ) ;
2
2
3
+ const META_DESCRIPTION = 'A modern and performant static site generator supporting Web Component based development' ;
4
+
3
5
module . exports = {
4
6
workspace : path . join ( __dirname , 'www' ) ,
5
7
title : 'Greenwood' ,
6
8
meta : [
7
- { property : 'og:site' , content : 'greenwood' } ,
8
- { name : 'twitter:site' , content : '@PrjEvergreen' }
9
+ { name : 'description' , content : META_DESCRIPTION } ,
10
+ { name : 'twitter:site' , content : '@PrjEvergreen' } ,
11
+ { property : 'og:tile' , content : 'Greenwood' } ,
12
+ { property : 'og:type' , content : 'website' } ,
13
+ { property : 'og:url' , content : 'https://www.greenwoodjs.io' } ,
14
+ { property : 'og:image' , content : 'https://s3.amazonaws.com/hosted.greenwoodjs.io/greenwood-logo.png' } ,
15
+ { property : 'og:description' , content : META_DESCRIPTION }
9
16
]
10
17
} ;
Original file line number Diff line number Diff line change 4
4
< title > My App</ title >
5
5
6
6
< meta charset ='utf-8 '>
7
- < meta name ='description ' content ='Greenwood '/>
8
7
< meta name ='viewport ' content ='width=device-width, initial-scale=1 '/>
9
8
< meta name ='mobile-web-app-capable ' content ='yes '/>
10
9
< meta name ='apple-mobile-web-app-capable ' content ='yes '/>
11
10
< meta name ='apple-mobile-web-app-status-bar-style ' content ='black '/>
12
- < meta name ="description " content ="A modern and performant static site generator supporting Web Component based development. "/>
13
- <!-- <link rel="manifest" href="/icons/manifest.json"> -->
14
-
15
- < meta property ="og:title " content ="Greenwood " />
16
- < meta property ="og:type " content ="website " />
17
- < meta property ="og:url " content ="https://project-evergreen.thegreenhouse.io/ " />
18
- < meta property ="og:image " content ="https://s3.amazonaws.com/uploads.thegreenhouse.io/project-evergreen/logo.jpg " />
19
- < meta property ="og:description " content ="A modern and performant static site generator supporting Web Component based development. " />
20
-
21
- <!-- Load GoogleFonts here -->
22
- <!-- <link href="//fonts.googleapis.com/css?family=Raleway" rel="stylesheet"> -->
23
11
24
12
<!-- Add forwards compatibility for ES5 transpiled web components -->
25
13
<!-- https://github.com/Polymer/lit-element/issues/72#issuecomment-390894353 -->
You can’t perform that action at this time.
0 commit comments