Skip to content

Commit c058301

Browse files
committed
update
1 parent a501527 commit c058301

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
deploy
22
node_modules
3-
.env
3+
.env
4+
.DS_Store

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/x-milestone.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ <h2>$$title$$</h2>
55
<p>
66
<slot></slot>
77
</p>
8+
$$ifdef:img$$
89
<img src="$$img$$" />
10+
$$endif$$
11+
$$ifdef:vid$$
12+
<video autoplay muted loop style="filter: saturate(1.2)">
13+
<source src="$$vid$$" type="video/webm">
14+
</video>
15+
$$endif$$
916
</article>
1017
</card>
1118
</div>

src/components/x-roadmap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<b>RTC over Nostr signaling</b>, enabling easy development of decentralized games and apps
2525
</x-task>
2626

27-
<x-milestone title="v0.0.x NGE" img="imgs/p2p.webp">
27+
<x-milestone title="v0.0.x NGE" vid="imgs/nge-v0.webm">
2828
<p>
2929
At this stage, the engine supports P2P networking and essential Nostr functionalities,
3030
including

static/imgs/nge-v0.webm

2.7 MB
Binary file not shown.

static/style.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,9 @@
356356

357357

358358

359-
article img {
359+
article img,
360+
article video
361+
{
360362
max-width: 100%;
361363
margin: auto;
362364
display: block;

0 commit comments

Comments
 (0)