-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtalk.html
More file actions
executable file
·78 lines (77 loc) · 2.35 KB
/
talk.html
File metadata and controls
executable file
·78 lines (77 loc) · 2.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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">Home</a>
</li>
<li class="main-nav-item">
<a href="archive.html" class="main-nav-link active">Talks</a>
</li>
<li class="main-nav-item">
<a href="about.html" class="main-nav-link">About</a>
</li>
</ul>
</nav>
</header>
<!--
TODO - The layout for a talk (
topic/
speaker/
description/
links/
RSVP button/
etc.)
-->
<section>
<h1>Talk</h1>
<h2>Speaker</h2>
<p>Goofey</p>
<img src="img/speakers/test-speaker-image.jpg" height="200"
width="200">
<h2>Topic</h2>
<p>Building Disney Websites</p>
<h2>Description</h2>
<p>Using Disney's browser editor to write sample
Disney Add-ons can be handy for extremely basic
scripts, but gets clunky fast when developers want
to do something like version control their code or
have more than one person working on a script.
With the help of a couple open source projects,
developers can now build Add-ons on locally,
on their own machines, with the tools they're
most comfortable with.</p>
<h2>Links</h2>
<p class="main-nav-item"> <a href="https://developers.smartsheet.com" target="_blank">https://developers.<smartsheet class="com">com</smartsheet></a></p>
<p class="main-nav-item"> <a href="index.html">BellevueJS</a></p>
<h2>RSVP</h2>
<div>
<button onclick="myFunction()"><h3>RSVP</h3></button>
<script>
function myFunction() {
alert("Thank You!");
}
</script>
</div>
</section>
<script type="text/javascript" src="src/talks.js"> </script>
</body>
</html>