-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathvolunteer.html
More file actions
114 lines (114 loc) · 4.5 KB
/
volunteer.html
File metadata and controls
114 lines (114 loc) · 4.5 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
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
{{ define "main" }}
{{- partial "navbar_temp.html" . -}}
<div class="about-page page">
<div class="home-section-grid home-section-dark">
<div class="home-section">
<div class="page-section">
<div
class="page-section-image page-section-grid-secondary"
style='background-image: url("/images/general/volunteer_2.jpg")'
></div>
<div class="page-section-content page-section-grid-primary">
<div class="page-header-title">VOLUNTEER</div>
<div class="page-section-text">Make an Impact.</div>
<div class="page-section-body">
The Carleton Computer Science Society is creating a variety of CCR
accredited volunteer opportunities.
</div>
<a href="/volunteer-mailing-list/"
>{{- partial "button.html" (dict "label" "Join Mailing List") -}}</a
>
</div>
</div>
</div>
</div>
<!-- <div class="home-section-grid home-section-dark page-heading">
<div class="home-section">
<div class="page-section page-section-grid-priority">
<div
class="page-section-image page-section-grid-secondary"
style='background-image: url("/images/general/volunteer_2.jpg")'
></div>
<div class="page-section-content">
<div class="page-header-title">VOLUNTEER</div>
<div class="page-section-text">Make an Impact.</div>
<div class="page-section-body">
The Carleton Computer Science Society is creating a variety of CCR
accredited volunteer oppurtunities.
</div>
<a href="/volunteer-mailing-list/"
>{{- partial "button.html" (dict "label" "Join Mailing List") -}}</a
>
</div>
</div>
</div>
</div> -->
<div class="Volunteer__content">
{{ .Content }}
</div>
<!--
<div class="home-section-grid home-section-light">
<div class="home-section">
<div class="page-section page-section-grid-priority">
<div class="page-section-content">
<div class="page-header-title">SOCIAL</div>
<div class="page-section-text">Social Committee</div>
<div class="page-section-body">
The Carleton Computer Science Society is a student led
organization that represents all computer science students
attending Carleton University.
</div>
<a href="/about/team"
>{{- partial "button.html" (dict "label" "Learn More") -}}</a
>
</div>
<div
class="page-section-image page-section-grid-secondary"
style='background-image: url("/images/boardgame.png")'
></div>
</div>
</div>
</div>
<div class="home-section-grid home-section-dark">
<div class="home-section">
<div class="page-section">
<div
class="page-section-image page-section-grid-secondary"
style='background-image: url("/images/academics.png")'
></div>
<div class="page-section-content page-section-grid-primary">
<div class="page-header-title">ACADEMICS</div>
<div class="page-section-text">Academics Group</div>
<div class="page-section-body">
The board of directors is a group of both elected and appointed
individuals in charge of managing the organization.
</div>
<a href="/about/team"
>{{- partial "button.html" (dict "label" "Learn More") -}}</a
>
</div>
</div>
</div>
</div>
<div class="home-section-grid home-section-light">
<div class="home-section">
<div class="page-section page-section-grid-priority">
<div class="page-section-content">
<div class="page-header-title">DEVELOPMENT</div>
<div class="page-section-text">Development Group</div>
<div class="page-section-body">
The CCSS strives to be a transparent and accessible organization
for all Carleton University computer science students and
community members.
</div>
<a href="/about/team"
>{{- partial "button.html" (dict "label" "Learn More") -}}</a
>
</div>
<div class="page-section-image page-section-grid-secondary"></div>
</div>
</div>
</div>
-->
</div>
{{ end }}