Skip to content

Commit 50a5657

Browse files
committed
use npm logo instead of photo
1 parent 588ba04 commit 50a5657

File tree

10 files changed

+215
-6
lines changed

10 files changed

+215
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ $RECYCLE.BIN/
3232
.DS_Store
3333
.AppleDouble
3434
.LSOverride
35+
.vscode
3536

3637
# Thumbnails
3738
._*

.vscode/cSpell.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// cSpell Settings
2+
{
3+
4+
// Version of the setting file. Always 0.1
5+
"version": "0.1",
6+
7+
// language - current active spelling language
8+
"language": "en",
9+
10+
// words - list of words to be always considered correct
11+
"words": [
12+
"coderoad"
13+
],
14+
15+
// flagWords - list of words to be always considered incorrect
16+
// This is useful for offensive words and common spelling errors.
17+
// For example "hte" should be "the"
18+
"flagWords": [
19+
"hte"
20+
]
21+
}

_posts/landing/2016-02-01-atom-coderoad.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ image:
99
href: atom-coderoad-demo
1010
alt: Atom-CodeRoad Demo
1111
src: images/demos/atom-coderoad.jpg
12+
height: 328px
13+
width: 574px
1214
categories:
1315
- features
1416
---

_posts/landing/2016-02-02-builder-coderoad.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ image:
99
href: builder-coderoad-demo
1010
alt: Builder-CodeRoad Demo
1111
src: images/demos/builder-demo.jpg
12+
height: 328px
13+
width: 574px
1214
categories:
1315
- features
1416
---

_posts/landing/2016-02-03-publish.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
---
22
title: Publish Free & Open
33
image:
4-
id: publish-tutorial
5-
alt: Publish Tutorial
6-
src: images/demos/publish.png
4+
id: publish-npm
5+
alt: Publish on NPM
6+
src: images/landing/npm-logo.svg
7+
height: 100px
8+
width: 100px
79
categories:
810
- features
911
---

_sass/_custom.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ a.smooth:hover {
2121
width: 90%;
2222
}
2323

24+
2425
/* Portrait */
2526
@media (max-width: 850px) {
2627
.edit-docs {

images/docs/elements.svg

Lines changed: 71 additions & 0 deletions
Loading

images/docs/tutorial.svg

Lines changed: 97 additions & 0 deletions
Loading

images/landing/npm-logo.svg

Lines changed: 8 additions & 0 deletions
Loading

index.html

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,13 @@ <h2>{{summary.title}}</h2>
4141
{% if feature.image.href %}
4242
<a id="{{feature.image.id}}" href="#{{feature.image.href}}" class="modal-link">
4343
{% endif %}
44-
<img alt="{{feature.image.alt}}" class="lazy"
45-
src="{{feature.image.src}}"
46-
height="328px" width="574px"/>
44+
<img
45+
class="lazy"
46+
alt="{{feature.image.alt}}"
47+
src="{{feature.image.src}}"
48+
height="{{feature.image.height}}"
49+
width="{{feature.image.height}}"
50+
/>
4751
{% if feature.image.href %}
4852
</a>
4953
{% endif %}

0 commit comments

Comments
 (0)