Skip to content
This repository was archived by the owner on Feb 6, 2024. It is now read-only.

Commit 2728f00

Browse files
feat: list press coverage
1 parent 4c8eae6 commit 2728f00

File tree

2 files changed

+62
-4
lines changed

2 files changed

+62
-4
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
app-press {
22
main {
33
background: white;
4+
5+
article {
6+
display: flex;
7+
flex-direction: column;
8+
9+
span {
10+
color: var(--ion-color-medium);
11+
}
12+
}
413
}
514
}

studio/src/app/pages/core/about/app-press/app-press.tsx

Lines changed: 53 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {Component, h} from '@stencil/core';
22

33
@Component({
44
tag: 'app-press',
5-
styleUrl: 'app-press.scss'
5+
styleUrl: 'app-press.scss',
66
})
77
export class AppPress {
88
render() {
@@ -13,8 +13,8 @@ export class AppPress {
1313
<h1>Press</h1>
1414

1515
<p>
16-
We don't provide any press kit yet but, as we are open source and open to any contributions, we would be happy to get your help to create such
17-
material 😄
16+
We don't provide any press kit yet but, as we are open source and are welcoming any contributions, we would be happy to get your help to create such
17+
material 😄.
1818
</p>
1919

2020
<p>
@@ -28,8 +28,57 @@ export class AppPress {
2828
</ion-router-link>{' '}
2929
us for any inquiries.
3030
</p>
31+
32+
<h1 class="ion-padding-top">Featured Stories</h1>
33+
34+
<article class="ion-margin-top">
35+
<a href="https://medium.com/swlh/deckdeckgo-why-building-presentation-with-web-standards-makes-sense-1b6062a84fa" rel="noopener noreferrer">
36+
Why building presentations with web standards makes sense
37+
</a>
38+
<span>
39+
<small>2020-05-06</small>
40+
</span>
41+
</article>
42+
43+
<article class="ion-margin-top">
44+
<a href="https://qiita.com/berry-clione/items/8826729673fcdc9bd12f" rel="noopener noreferrer">
45+
ブラウザ上でスライド作ってプレゼンするDeckDeckGoをローカル環境で構築して脱パワポしてみた
46+
</a>
47+
<span>
48+
<small>2019-10-06</small>
49+
</span>
50+
</article>
51+
52+
<article class="ion-margin-top">
53+
<a href="https://www.tekcrispy.com/2019/09/25/deckdeckgo/" rel="noopener noreferrer">
54+
Crea presentaciones con diapositivas rápidamente
55+
</a>
56+
<span>
57+
<small>2019-09-25</small>
58+
</span>
59+
</article>
60+
61+
<article class="ion-margin-top">
62+
<a href="https://awards.dinacon.ch/en/shortlist-is-out/" rel="noopener noreferrer">
63+
Shortlisted for the DINAcon Awards 2019
64+
</a>
65+
<span>
66+
<small>2019-09-24</small>
67+
</span>
68+
</article>
69+
70+
<article class="ion-margin-top">
71+
<a
72+
href="https://www.moongift.jp/2019/09/deckdeckgo-%E3%83%AA%E3%83%A2%E3%83%BC%E3%83%88%E3%82%B3%E3%83%B3%E3%83%88%E3%83%AD%E3%83%BC%E3%83%AB%E3%82%82%E3%81%A7%E3%81%8D%E3%82%8Bpwa%E3%81%AEhtml%E3%82%B9%E3%83%A9%E3%82%A4%E3%83%89/"
73+
rel="noopener noreferrer">
74+
リモートコントロールもできるPWAのHTMLスライド
75+
</a>
76+
<span>
77+
<small>2019-09-01</small>
78+
</span>
79+
</article>
3180
</main>
32-
</ion-content>
81+
</ion-content>,
3382
];
3483
}
3584
}

0 commit comments

Comments
 (0)