-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore/upgrade greenwood 0.10.0 (#22)
* initial upgrade test with yarn link * use greenwood serve task for serving * install alpha.0 * alpha.1 update * upgrade alpha.2 * upgrade to alpha.3 and refactor * home page css * fix linting * update alpha.4 * upgrade chromimum-lib for github workflows * update Netlify to Node v12 * update Netlify to Node v12 * upgrade v0.10.0-alpha.6 * update alpha.7 * upgrade alpha.8 * meta for favicon * upgrade alpha.9 * clean up meta * fix Lighthouse a11y feedback * github badge height and width * alpha.10 update * v0.10.0 release version
- Loading branch information
1 parent
34d027c
commit 478d7e8
Showing
12 changed files
with
4,769 additions
and
16,370 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[build] | ||
publish = "public/" | ||
command = "npm run build" | ||
|
||
[build.processing] | ||
skip_processing = true | ||
|
||
|
||
[build.environment] | ||
NODE_VERSION = "12.13.0" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.content { | ||
flex: 1; | ||
max-width: 50em; | ||
height: 100%; | ||
margin: auto; | ||
font-size: 1.2rem; | ||
padding: 2rem; | ||
} | ||
|
||
.content h2 { | ||
color: #0b6623; | ||
} | ||
|
||
.content h2, | ||
.content h3 { | ||
font-size: 2rem; | ||
margin: 5px 0; | ||
} | ||
|
||
.content a { | ||
color: #1d337a; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.content { | ||
flex: 1; | ||
max-width: 50em; | ||
height: 100%; | ||
margin: auto; | ||
font-size: 1.2rem; | ||
padding: 2rem; | ||
} | ||
|
||
.content h3 { | ||
color: #0b6623; | ||
font-size: 2rem; | ||
margin: 5px 0; | ||
} | ||
|
||
.content a { | ||
color: #1d337a; | ||
} | ||
|
||
.content ul li { | ||
padding: 5px 0; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" prefix="og:http://ogp.me/ns#"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta-outlet></meta-outlet> | ||
|
||
<!-- TODO have to use forward slash / for path references? translate on the fly in serve.js? --> | ||
<script type="module" src="/components/footer/footer.js"></script> | ||
<script type="module" src="/components/header/header.js"></script> | ||
|
||
<link rel="stylesheet" href="/styles/theme.css"></link> | ||
<link rel="stylesheet" href="/styles/blog.css"></link> | ||
</head> | ||
|
||
<body> | ||
|
||
<app-header></app-header> | ||
|
||
<div class='page-template content'> | ||
|
||
<content-outlet></content-outlet> | ||
|
||
<h3>More Posts</h3> | ||
<nav> | ||
<ul> | ||
<li><a href="/blog/second-post/">My Second Post</a></li> | ||
<li><a href="/blog/first-post/">My First Post</a></li> | ||
</ul> | ||
</nav> | ||
</div> | ||
|
||
<app-footer></app-footer> | ||
|
||
</body> | ||
|
||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" prefix="og:http://ogp.me/ns#"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta-outlet></meta-outlet> | ||
|
||
<!-- TODO have to use forward slash / for path references? translate on the fly in serve.js? --> | ||
<script type="module" src="/components/footer/footer.js"></script> | ||
<script type="module" src="/components/header/header.js"></script> | ||
|
||
<link rel="stylesheet" href="/styles/theme.css"></link> | ||
<link rel="stylesheet" href="/styles/home.css"></link> | ||
</head> | ||
|
||
<body> | ||
|
||
<div> | ||
<app-header></app-header> | ||
|
||
<div class='content'> | ||
<content-outlet></content-outlet> | ||
</div> | ||
|
||
<app-footer></app-footer> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |