Skip to content

Commit 15a464f

Browse files
committed
feat(article): add page with link to article
1 parent 831f1db commit 15a464f

2 files changed

Lines changed: 62 additions & 0 deletions

File tree

packages/web-host/article.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta name="theme-color" content="#6c63ff"/>
7+
<title>WebAssembly Component Model - Building a plugin system</title>
8+
<meta name="description" content="Discover how WebAssembly Component Model works through the concrete use case of a REPL with a multi-language plugin system."/>
9+
<meta property="og:title" content="WebAssembly Component Model - Building a plugin system"/>
10+
<meta property="og:description" content="Discover how WebAssembly Component Model works through the concrete use case of a REPL with a multi-language plugin system."/>
11+
<meta property="og:url" content="https://topheman.github.io/webassembly-component-model-experiments/article"/>
12+
<meta property="og:site_name" content="WebAssembly Component Model - Building a plugin system"/>
13+
<meta property="og:locale" content="en_US"/>
14+
<meta property="og:image" content="https://topheman.github.io/webassembly-component-model-experiments/banner-post.png"/>
15+
<meta property="og:image:width" content="1000"/>
16+
<meta property="og:image:height" content="420"/>
17+
<meta property="og:image:alt" content="WebAssembly Component Model - Building a plugin system"/>
18+
<meta property="og:type" content="website"/>
19+
<meta name="twitter:card" content="summary_large_image"/>
20+
<meta name="twitter:site" content="@topheman"/>
21+
<meta name="twitter:creator" content="@topheman"/>
22+
<meta name="twitter:title" content="WebAssembly Component Model - Building a plugin system"/>
23+
<meta name="twitter:description" content="Discover how WebAssembly Component Model works through the concrete use case of a REPL with a multi-language plugin system."/>
24+
<meta name="twitter:image" content="https://topheman.github.io/webassembly-component-model-experiments/banner-post.png"/>
25+
<link rel="icon" href="/favicon.ico"/>
26+
<link rel="icon" href="/favicon-32x32.png" sizes="32x32"/>
27+
<link rel="icon" href="/favicon-64x64.png" sizes="64x64"/>
28+
<link rel="icon" href="/favicon-128x128.png" sizes="128x128"/>
29+
<link rel="icon" href="/favicon-144x144.png" sizes="144x144"/>
30+
<link rel="icon" href="/favicon-192x192.png" sizes="192x192"/>
31+
<link rel="icon" href="/favicon-256x256.png" sizes="256x256"/>
32+
<link rel="icon" href="/favicon-384x384.png" sizes="384x384"/>
33+
<link rel="icon" href="/favicon-512x512.png" sizes="512x512"/>
34+
<link rel="apple-touch-icon" href="/apple-touch-icon-120x120.png" sizes="120x120"/>
35+
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" sizes="180x180"/>
36+
<style>
37+
.w-full {
38+
width: 100%;
39+
}
40+
.h-auto {
41+
height: auto;
42+
}
43+
img {
44+
max-width: 1000px;
45+
}
46+
body {
47+
text-align: center;
48+
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
49+
}
50+
a {
51+
color: #6c63ff;
52+
}
53+
</style>
54+
</head>
55+
<body>
56+
<a href="https://dev.to/topheman/webassembly-component-model-building-a-plugin-system-58o0" title="Read the article">
57+
<h1>🧩 WebAssembly Component Model - Building a plugin system</h1>
58+
<img src="./banner-post.png" alt="WebAssembly Component Model - Building a plugin system" class="w-full h-auto" />
59+
<p>📖 Read the article</p>
60+
</a>
61+
</body>
62+
</html>
165 KB
Loading

0 commit comments

Comments
 (0)