-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (83 loc) · 3.07 KB
/
index.html
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Benjamin Goldstein - Home</title>
<link rel="stylesheet" href="./css/default.css" />
</head>
<body>
<header>
<div class="logo">
<a href="./">Benjamin Goldstein</a>
</div>
<nav>
<a href="./">Home</a>
<a href="./about.html">About</a>
<a href="./contact.html">Contact</a>
<a href="./archive.html">Archive</a>
</nav>
</header>
<main role="main">
<h1>Home</h1>
<h2>Welcome to My Blog</h2>
<img src="./images/me.png" style="height: 100px; float: right; margin: 10px;" />
<p>The personal blog of Benjamin Goldstein.</p>
<p>
💻 Programmer <br />
🇮🇱 Israeli <br />
🇦🇺 Australian College student<br />
📈 Entrepreneur <br />
🥞 ... and pancake afficionado <br />
</p>
<p>Here are my most recent blog posts:</p>
<h2>Posts</h2>
<ul>
<li>
<a href="./posts/2019-10-10-protein.html">The Best Whey</a> - October 10, 2019
</li>
<li>
<a href="./posts/2019-09-24-newblog.html">Welcome to my new Blog domain</a> - September 24, 2019
</li>
<li>
<a href="./posts/2019-08-03-privacy.html">Privacy</a> - August 3, 2019
</li>
<li>
<a href="./posts/2019-07-17-committee-programming.html">Mixing fun(ctional programming) with pleasure</a> - July 17, 2019
</li>
<li>
<a href="./posts/2019-06-20-trump-israel.html">Trump and Israel</a> - June 20, 2019
</li>
<li>
<a href="./posts/2019-06-15-boredom.html">Boredom</a> - June 15, 2019
</li>
<li>
<a href="./posts/2019-06-13-steak.html">Brazilian steakhouse</a> - June 13, 2019
</li>
<li>
<a href="./posts/2019-06-05-coding-update.html">Coding update</a> - June 5, 2019
</li>
<li>
<a href="./posts/2019-05-24-committee-surprise.html">Student Committee surprise</a> - May 24, 2019
</li>
<li>
<a href="./posts/2019-05-14-study-grant.html">Study grant awarded!</a> - May 14, 2019
</li>
<li>
<a href="./posts/2019-04-04-microsoft.html">Microsoft just keeps winning</a> - April 4, 2019
</li>
<li>
<a href="./posts/2019-03-29-rush-week-australia.html">Rush week in Australian colleges</a> - March 29, 2019
</li>
<li>
<a href="./posts/2019-01-15-js-gold-rush.html">The Javascript front-end Gold Rush</a> - January 15, 2019
</li>
</ul>
<p>…and you can find more posts in the <a href="./archive.html">archives</a>.</p>
</main>
<footer>
Copyright Benjamin Goldstein © 2019
</footer>
</body>
</html>