-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·63 lines (63 loc) · 2.46 KB
/
Copy pathindex.html
File metadata and controls
executable file
·63 lines (63 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta charset="UTF-8">
<title>BellevueJS</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="icon" type="image/x-icon" sizes="16x16 32x32 64x64" href="favicon.ico" />
<link rel="icon" type="image/png" sizes="196x196" href="/img/icon.png">
<link rel="apple-touch-icon" href="/img/icon.png">
<link rel="stylesheet" type="text/css" href="dist/main.min.css" />
</head>
<body>
<header>
<a href="index.html">
<picture>
<source srcset="img/logo-sm.png" media="(max-width: 800px)">
<img src="img/logo.png" alt="BellevueJS" />
</picture>
</a>
<nav class="main-nav">
<ul class="main-nav-list">
<li class="main-nav-item">
<a href="index.html" class="main-nav-link active">Home</a>
</li>
<li class="main-nav-item">
<a href="archive.html" class="main-nav-link">Talks</a>
</li>
<li class="main-nav-item">
<a href="about.html" class="main-nav-link">About</a>
</li>
</ul>
</nav>
</header>
<section>
<h1>Upcoming</h1>
<p>Next meetup is TBD</p>
<h1>Recent Talks</h1>
<h2>Speaker</h2>
<p>Justin Lee</p>
<h2>Topic</h2>
<p>Introduction to Code Katas</p>
<h2>Description</h2>
<p>Code Katas are a fun way to do coding exercises, in *any* language you want. It's a good practice to keep increasing your skills as a coder. You can practice the same kata over and over to continue improving, get feedback from others, and move on to more difficult problems to solve.</p>
<br/>
<h2>Speaker</h2>
<p>Brian Gershon</p>
<h2>Topic</h2>
<p>Choose Your Own Adventure with Eleventy</p>
<h2>Description</h2>
<p>Let’s walk through creating content and features quickly with Eleventy and off-the-shelf Vanilla JS. I’ll start with an intro, discuss the problem being solved, compare a bit with Gatsby, and accelerate into generating 10,000 pages.</p>
<h2>Links</h2>
<p><a href="https://www.briangershon.com/blog/choose-your-own-adventure-with-eleventy/" target="_blank">Slides</a></p>
</section>
<footer>
<h3>A special thanks to our sponsors</h3>
<img src="img/sponsors/fresh.png" alt="Fresh" class="logo-sponsor" />
<img src="img/sponsors/salesforce.png" alt="salesforce" class="logo-sponsor" />
<img src="img/sponsors/smartsheet.png" alt="Smartsheet" class="logo-sponsor" />
</footer>
<script type="text/javascript" src="src/talks.js"> </script>
</body>
</html>