-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (139 loc) · 4.82 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="images/mstile-310x310.png" alt="elephant">
<nav>
<ul>
<li>
<a href="#">About</a>
</li>
<li>
<a href="https://docs.google.com/forms/d/1ZSmUMgLcZSdyAyr_qkoUQM7FBEyHQVuV8uUJ_dywJZ8/edit">Become a member</a>
</li>
<li>
<a href="mailto:[email protected]">Contact Us</a>
</li>
<li>
<a href="https://2017.pgday.com.au/">PGDay 2018</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<h2>PGDU</h2>
<p>PostgreSQL Down Under Incorporated, known as PGDU, is a non for profit association. Our purpose is
to support the growth and education of PostgreSQL, The World's Most Advanced Open Source Database.</p>
</section>
<section>
<h2>Membership</h2>
<p>Are you interested in PostgreSQL growth and education? Do you support PostgreSQL and want to help? By becoming a member
you will be helping to support our mission and be able to influence what we do.</p>
</section>
<section>
<h2>Upcoming Events</h2>
<p> PGDay Down Under 2018 - Melbourne, December 7th!
<br> Call for Papers is now open. <br>Submit your proposal now!!
<ul>
<li>
<a href="https://docs.google.com/forms/d/1TNEqIbP6XbvKQYBDp85SHzROu2JyiNVkjDKGzfEXV_U/edit">Submit CFP Form</a>
</li>
</ul>
<p>Here you can find the PostgreSQL Meetup in Australia & New Zealand</p>
<ul>
<li>
<a href="https://www.meetup.com/en-AU/topics/postgresql/au/melbourne/?_cookie-check=ocrvrv_1gY3A_duw">Melbourne PUG</a>
</li>
<li>
<a href="https://www.meetup.com/en-AU/Sydney-PostgreSQL-User-Group/">Sydney PUG</a>
</li>
<li>
<a href="https://www.meetup.com/en-AU/Brisbane-PostgreSQL-User-Group/">Brisbane PUG</a>
</li>
<li>
<a href="https://www.meetup.com/en-AU/Wellington-PostgreSQL-User-Group/">Wellington PUG</a>
</li>
</ul>
</p>
</section>
</main>
<div class="title">
<h2>PGDU Team</h2>
</div>
<div class="team-section">
<div class="our-team">
<div class="pic">
<img src="images/team1.jpg">
</div>
<h3 class="title">Tyson Clugg</h3>
<span class="post">President</span>
</div>
<div class="our-team">
<div class="pic">
<img src="images/team2.jpg">
</div>
<h3 class="title">Andrea Cucciniello</h3>
<span class="post">Secretary</span>
</div>
<div class="our-team">
<div class="pic">
<img src="images/team3.jpg">
</div>
<h3 class="title">Gary Evans</h3>
<span class="post">Committee Member</span>
</div>
<div class="our-team">
<div class="pic">
<img src="images/team4.jpg">
</div>
<h3 class="title">Rajni Baliyan</h3>
<span class="post">Committee Member</span>
</div>
<div class="our-team">
<div class="pic">
<img src="images/team5.jpg">
</div>
<h3 class="title">James Sewell</h3>
<span class="post">Sponsorship Officer</span>
</div>
</div>
<aside>
<div class="hidden-menu">
<div class="hidden-menu-buttons">
<a class="member-button" href="https://docs.google.com/forms/d/1ZSmUMgLcZSdyAyr_qkoUQM7FBEyHQVuV8uUJ_dywJZ8/edit">Ordinary member</a>
<a class="member-button" href="https://docs.google.com/forms/d/1ZSmUMgLcZSdyAyr_qkoUQM7FBEyHQVuV8uUJ_dywJZ8/edit">Volunteer member</a>
</div>
</div>
<div class="button">
<a class="member-button" href="#">Become a Member!</a>
</div>
</aside>
<footer>
<h3>PostgreSQL Down Under Inc.</h3>
<ul>
<li>
<a href="#">
<img src="images/twitter.png" alt="Twitter logo">
</a>
</li>
<li>
<a href="#">
<img src="images/facebook.png" alt="Facebook logo">
</a>
</li>
</ul>
<p>
© 2018 PostgreSQL Down Under Inc.
</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="main.js" charset="utf-8"></script>
</body>
</html>