-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
138 lines (109 loc) · 6.1 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
---
layout: default
title: Competitive Programming Club
---
<div class="banner-container">
<!-- Two images stacked on top of each other -->
<img src="img/uofc.jpeg" alt="Banner 1">
<div class="banner-text">
<div class="banner-title">Competitive Programming Club</div>
<div class="banner-description">
Welcome to the University of Calgary <b>Competitive Programming Club</b> website.
We meet every Tuesday afternoon from 4-6pm in the Science Collaborative Space (ST 142) for coaching, practicing, and mingling.
Gain access to free weekly algorithmic topic sessions, get problem-solving help, and meet new people!
</div>
</div>
</div>
<div class = "row">
<div class="recent-posts-title">Latest Posts<img src="img/newspaper-folded.png" alt="Description" class="inline-img"> </div>
<div class="container-fluid">
{% for post in site.posts limit:1 %}
<div class="container blog-c">
{{ post.content }}
</div>
{% endfor %}
</div>
</div>
<hr>
<div class = "row pt-5">
<div class = "card-deck deck justify-content-center">
<div class="col-md-11 col-xl-3 pb-5">
<div class="card h-100 text-center">
<div class="card-header card-header-dec">
Connect with us
</div>
<div class="card-body card-border center-h">
<div class="skill-icons justify-content-center">
<a href="{{ site.newsletter }}">
<i class="far fa-newspaper fa-3x fa-icon"></i>
</a>
<a href="{{ site.github }}">
<i class="fab fa-github-square fa-3x fa-icon"></i>
</a>
<a href="{{ site.facebook }}">
<i class="fab fa-facebook-square fa-3x fa-icon"></i>
</a>
</div>
<div class="skill-icons">
<a class = "twitter" href="{{ site.twitter }}">
<i class="fab fa-twitter-square fa-3x fa-icon"></i>
</a>
<a class ="discord" href="{{ site.discord }}">
<i class="fab fa-discord fa-3x fa-icon"></i>
</a>
<a class = "mail" href="mailto:{{ site.email }}">
<i class="fas fa-envelope-square fa-3x fa-icon"></i>
</a>
</div>
</div>
</div>
</div>
<div class="col-md-11 col-xl-3 pb-5">
<div class="card h-100 text-center">
<div class="card-header card-header-dec">
Open Positions
</div>
<div class="card-body card-border center-h">
<!-- This un-comment if JR exec positions filled. -->
<!-- <p class = "text-center"><b>None: </b>
All of our executive positions are currently full. Please stay tuned for the upcoming Fall 2020 and Winter 2021 semesters for potential new openings and opportunities.</p>
</div> -->
<p class = "text-center">
Junior Executive applications are now open! If you are interested in joining our team, please fill it out! If you have any questions,
feel free to contact us at [email protected].
</p>
<!-- Form for applications -->
<a class="btn btn-info btn-md custom-btn" href="https://forms.gle/7Lz3i5E4egUFA8br5" role="button" target="_blank">
Apply here!
</a>
</div>
</div>
</div>
<div class="col-md-11 col-xl-4 pb-5">
<div class="card h-100 text-center">
<div class="card-header card-header-dec">
Sponsors
</div>
<div class="card-body card-border center-h">
<div class="skill-icons">
<a class="text-center icon" href="https://www.google.com/">
<img class="img-fluid google-logo" src="/img/logo-google.png" alt="Google">
</a>
<a class="text-center icon" href="https://www.kattis.com/">
<img class="img-fluid external-logo" src="/img/logo-kattis.png" alt="Kattis">
</a>
</div>
<div class="skill-icons">
<a class="text-center" href="https://www.synopsys.com/software-integrity.html">
<img class="img-fluid external-logo-2" src="/img/logo-synopsys-3.png" alt="Synopsys">
</a>
<a class="text-center" a href="http://www.arcurve.com">
<img class="img-fluid external-logo-3" src="/img/logo-arcurve.png" alt="Arcurve">
</a>
</div>
</div>
</div>
</div>
</div>
</div> <!--End row for panel section-->
</div>