Skip to content

Commit

Permalink
self host images (#744)
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 authored Oct 1, 2021
1 parent b9bb298 commit 4879ae5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file added www/assets/getting-started-repo-styled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions www/pages/docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ module.exports = {
{ property: 'og:title', content: 'Greenwood' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://www.greenwoodjs.io' },
{ property: 'og:image', content: 'https://s3.amazonaws.com/hosted.greenwoodjs.io/greenwood-logo.png' },
{ property: 'og:image', content: 'https://www.greenwoodjs.io/assets/greenwood-logo-300w.png' },
{ property: 'og:description', content: META_DESCRIPTION },
{ rel: 'shortcut icon', href: FAVICON_HREF },
{ rel: 'icon', href: FAVICON_HREF }
Expand All @@ -102,7 +102,7 @@ Which would be equivalent to:
<meta property="og:title" content="Greenwood">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.greenwoodjs.io/docs/">
<meta property="og:image" content="https://s3.amazonaws.com/hosted.greenwoodjs.io/greenwood-logo.png">
<meta property="og:image" content="https://www.greenwoodjs.io/assets/greenwood-logo-300w.png">
<meta property="og:description" content="A modern and performant static site generator supporting Web Component based development">
<link rel="shortcut icon" href="/assets/favicon.ico">
<link rel="icon" href="/assets/favicon.ico">
Expand Down
2 changes: 1 addition & 1 deletion www/pages/getting-started/branding.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,6 @@ customElements.define('app-footer', FooterComponent);
```

Taking this all the way with [the code from companion repo](https://vuejs.org/v2/guide/single-file-components.html), you should be able to get a result that looks like this:
![greenwood-getting-started-styled](https://s3.amazonaws.com/hosted.greenwoodjs.io/getting-started-repo-styled.png)
![greenwood-getting-started-styled](/assets/getting-started-repo-styled.png)

Phew!! What a journey, but now you have a blog ready to publish! The last step is to build and host your project, so let's move on to the [build and deploy section](/getting-started/build-and-deploy/) and make it happen!
2 changes: 1 addition & 1 deletion www/pages/getting-started/creating-content.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ $ npm start

Once the development server is ready, it will let you know that you can now open `localhost:1984` in your web browser. Doing so should yield you a page like this!

![greenwood-getting-started-unstyled](https://s3.amazonaws.com/hosted.greenwoodjs.io/getting-started-repo-unstyled-partial.png)
![greenwood-getting-started-unstyled](/assets/getting-started-repo-unstyled-partial.png)


Congrats, you've got your first **Greenwood** site running! It's coming along but still needs a little work. In the [next section](/getting-started/branding/) we'll create some reusable Web Components for the site's header and footer as well as introduce some CSS for styling.

0 comments on commit 4879ae5

Please sign in to comment.