Skip to content

Commit 8aee3b1

Browse files
committed
Add the start of a stakx website
1 parent 4304fb1 commit 8aee3b1

29 files changed

+323
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# http://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
indent_style = space
10+
indent_size = 4
11+
12+
[*.{md,markdown}]
13+
trim_trailing_whitespace = false

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
assets/photoshop/* filter=lfs diff=lfs merge=lfs -text
2+
assets/originals/* filter=lfs diff=lfs merge=lfs -text

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.stakx-cache/
2+
_site/

_config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Build Settings
2+
exclude:
3+
- assets/originals
4+
- assets/photoshop
5+
- data.txt
6+
7+
pageviews:
8+
- _pages

_departments/sport-clubs.html.twig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% extends '_layouts/department-section.html.twig' %}
2+
3+
{% set department = 'Sport Clubs' %}
4+
5+
{% block reportBody %}
6+
<div class="row">
7+
<div class="col-md-4">
8+
<span>27</span>
9+
<span>Number of Sport Clubs</span>
10+
</div>
11+
<div class="col-md-4">
12+
<span>31</span>
13+
<span>Number of Student Employees</span>
14+
</div>
15+
<div class="col-md-4">
16+
<span>710</span>
17+
<span>Number of students in Sport Clubs</span>
18+
</div>
19+
</div>
20+
{% endblock %}

_layouts/base.html.twig

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>Document</title>
8+
9+
{% block stylesheets %}{% endblock %}
10+
<link rel="stylesheet"
11+
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"
12+
integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb"
13+
crossorigin="anonymous">
14+
<link rel="stylesheet"
15+
href="{{ url('assets/css/styles.css') }}">
16+
</head>
17+
<body>
18+
{% block body %}{% endblock %}
19+
20+
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
21+
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
22+
crossorigin="anonymous"></script>
23+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js"
24+
integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh"
25+
crossorigin="anonymous"></script>
26+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js"
27+
integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ"
28+
crossorigin="anonymous"></script>
29+
{% block javascripts %}{% endblock %}
30+
</body>
31+
</html>

_layouts/department-section.html.twig

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<section class="page-section department--{{ department | lower | replace({' ': ''}) }}">
2+
<div class="container">
3+
<article class="annual-report">
4+
<header class="annual-report__header">
5+
<h2>{{ department }}</h2>
6+
</header>
7+
8+
<div class="annual-report__body">
9+
{% block reportBody %}{% endblock %}
10+
</div>
11+
12+
{% set footer = block('footer') %}
13+
{% if footer is not empty %}
14+
<footer class="annual-report__footer">
15+
{{ footer | raw }}
16+
</footer>
17+
{% endif %}
18+
</article>
19+
</div>
20+
</section>

_pages/index.html.twig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
permalink: /
3+
---
4+
5+
{% extends '_layouts/base.html.twig' %}
6+
7+
{% block body %}
8+
{% include '_departments/sport-clubs.html.twig' %}
9+
{% endblock %}

assets/css/styles.css

Whitespace-only changes.
13.6 KB
Loading
13.1 KB
Loading
13.1 KB
Loading
Loading
17.5 KB
Loading
12.4 KB
Loading
70.3 KB
Loading
15.1 KB
Loading
700 KB
Loading

assets/originals/Sports-a-Palooza.jpg

+3
Loading
+3
Loading

assets/photoshop/Accounting.psd

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:3c97f9c6ce8adc373b6e1069f542801cd389133c51fb7e2a91ccbcfd4b11619e
3+
size 110840

assets/photoshop/Campus_Recycling.psd

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:d06b3278ce77edd10fc534e6beaa55b4a74a70a934fe9db04e860ad64cf3cf10
3+
size 196991

assets/photoshop/Childrens_Center.psd

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:4275b6a0259ab2a863a97f9505c010031527e9612068c8866ae1978d9b588044
3+
size 223227
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:cbc5728647927951de72e6646a0e99081a45abcccb01e4eb0a4bfd18fccdd5a7
3+
size 477928

assets/photoshop/Productions.psd

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:cb0bfdb0336e4529467926faf8ac07ab845b3eb02db91dd88ed356819ec20df0
3+
size 238765

assets/photoshop/Sport_Clubs.psd

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:3a40a668dad91b63c461db5b5b6ef0aaf39c99760b031e0c9ca9fefb1a73db63
3+
size 139061
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:9a46c221f93d2d47411d72464c807e62b22c20ce573f1f18bdf44091c2232dbe
3+
size 491030

assets/photoshop/Ticket_Office.psd

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:947ad705bc0042ef642dc5184dff7c91be4ea9ab462184fab600a5393602441d
3+
size 212934

data.txt

+188
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
#
2+
# Accounting
3+
#
4+
5+
Number of club/org accounts
6+
280 Club accounts, 380 departments overall, including STAR, campus and AS related.
7+
8+
9+
Total operating budget for all AS prog/dept
10+
$8,637,455
11+
12+
13+
Student travel allocated (STAR)
14+
$204,934 from 192 different requests
15+
16+
17+
Club/org funding (please indicated number of requests, number funded and $funded)
18+
130 requests funded (in addition to the annual process), for $ 151,402
19+
20+
21+
Scholarships and grants
22+
$ 173,800
23+
24+
25+
Please list any point of pride for Accounting (anything not mentioned above).
26+
Funded the $5.7 million Sustainability Center construction project this year. Managed to hold our heads up with multiple staffing changes with the help of new employee Lynn Umzam and temp employee Deborah Volper. Many thanks to them.
27+
28+
#
29+
# Children's Center
30+
#
31+
32+
Accreditations
33+
Continued Accreditation by the National Association for the Education of Young Children
34+
35+
Number of Families served
36+
145 per semester
37+
38+
Number of children served
39+
156 per semester
40+
41+
Number of teachers
42+
12
43+
44+
Number of employees
45+
67
46+
47+
Number of Student Employee
48+
55 per sememster
49+
50+
Number of meals served
51+
20,000
52+
53+
Grant and fundraising
54+
Contracts with Ca. Department of Education/Early Education and Support Division for State funded preschool and childcare. Grant with Child and Adult Care Food Program.
55+
56+
Please list any point of pride for Children's Center (anything not mentioned above).
57+
In May 2017 the Children's Center was named an Exemplary Program by the Child and Adolescent Alumni Chapter.
58+
59+
#
60+
# Student Leadership
61+
#
62+
63+
Number of Student leaders (senate/cabinet/etc.)
64+
22 Senators; 13 Cabinet members; apx 25 committee members
65+
66+
Number of committees
67+
Three standing committees and six councils or "super committees)
68+
69+
Number of senate meetings
70+
33
71+
72+
Number of finance meetings
73+
33
74+
75+
Number of other committees meetings
76+
190
77+
78+
Number of resolutions passed
79+
19 resolutions and 18 recommendations
80+
81+
Number of students voted
82+
6,102
83+
84+
Number of non-AS committees served on (include names of committees)
85+
23 (not listing them)
86+
87+
Please list: • list of resolution titles • point of pride for Leadership • anything not mentioned above
88+
Establishment of the Student Legal Clinic SB‐2016‐17‐001 – Resolution Supporting Proposition 55: The California Extension of the Proposition 30 Income Tax Increase Initiative. Amendment to SB-2015-16-015 to reflect Measure R2 change to Measure M. Amendment to SB-2008-09-003 – Associated Students Sustainability SB-2016-17-003 – Scholarship in Recognition of Jennifer De La Torre SB-2016-17-004 – Associated Students Inc. Opposition to the Proposed 2017-2018 Tuition Increase. SB-2016-17-005 – Support AB17: Transit Pass Program: Free or Reduced Fare Transit Passes SB-2016-17-006 – Resolution Commending CSUN Men’s Hockey Team SB-2016-17-007 – Support AB 10: Feminine Hygiene Products SB-2016-17-008 – CSUN Associated Students in Opposition to Governor Brown’s Phasing Out of the Middle Class Scholarship SB-2016-17-009 – Feminine Products in Restrooms SB‐2016‐17‐010 – California State University, Northridge Associated Students, Inc. Opposition to the Dakota Access Pipeline Project SB‐2016‐17‐011 – Science Not Silence SB‐2016‐17‐012 – Opposition to Executive Order 13769: Protecting the Nation from Foreign Terrorist Entry into the United States SB‐2016‐17‐013 – Support AB 379: California Kickstart My Future Loan Forgiveness Program SB‐2016‐17‐014 – Associated Students Scholarship in Honor of Jose Luis Vargas Amendment to SB‐2012‐13‐10 – Resolution to Allow Students to Enter a Preferred Name on all CSUN Affiliated Applications and Coursework. Recommendations Internal Affairs • Marketing of Gender Inclusive Language • Create a Student Security Fund • Attorney General – Addition to Code • Codes and Resolutions • Communicating with Constituents, Part 2: Business Cards • Kosher Food • Sea World Tickets at AS Ticket Office • Supporting Individuals with Deferred Action for Childhood Arrival Protection • Food Pantry Competition External Affairs • Support Proposition 54 • Support Proposition 58 • Support Proposition 67 • Continuing Efforts for CSUN Apparel in Local Targets • Campus Safety Fair • Campus Food Pantry Services • Support for Increased Bike Lanes around CSUN University Affairs • Continuing Support for the CSUN Food Pantry • Bringing Kosher and Halal Food to CSUN • Installment of ATM’s on Campus • Bike Repair Stations • Graduation Senior Survey
89+
90+
#
91+
# Outdoor Adventures
92+
#
93+
94+
Number of students who attended Camp Matador
95+
104 paid, 98 attended
96+
97+
Number of students who attended Outdoor Orientation
98+
20 (3 trips)
99+
100+
Number of trips
101+
31 day trip (28 went) 45 multiday (41went)
102+
103+
Number of trip leaders
104+
20, 8 primary TL / 12 secondaries
105+
106+
Number of students involved in Outdoor Leadership Program
107+
33
108+
109+
Number of leadership workshops requested/presented
110+
9 in fall, 3 presented / 6 in spring 2 presented
111+
112+
Number of items rented
113+
1764
114+
115+
Number of bikes repaired/mmaintained
116+
will get numbers when Christine comes back ffrom Vacation
117+
118+
Number of student employees
119+
50
120+
121+
Number of staff employees
122+
1
123+
124+
Number of volunteers
125+
13
126+
127+
Please list any point of pride for Outdoor Adventures (anything not mentioned above)
128+
Rock wall staff, for there time belaying and teaching students at the rock wall. our partnership with Student Recreation Center, Sundays camp, the RTM department and Castaic Lake our workshop with Outdoor Afro, teaching and educating the group before they went on their first outdoor trip
129+
130+
#
131+
# Productions
132+
#
133+
134+
Number of Events (include average # of attendees)
135+
52 events/800 attendees on average
136+
137+
Number of student Volunteers
138+
150
139+
140+
Number of student employees
141+
7
142+
143+
Number of collaborations with non-AS dept.
144+
We have collaborated with about 60 different clubs, Vendors, departments and campus partners.
145+
146+
147+
#
148+
# Sport Clubs
149+
#
150+
151+
Number of Sport Clubs
152+
27
153+
154+
Number of Student Employees
155+
31
156+
157+
Number of Volunteers
158+
100 - 60 coaches and team volunteers, 6 Matador Sports Network Volunteers, 32 Sport Club Council Volunteers.
159+
160+
Number of students in Sport Clubs (total)
161+
710
162+
163+
Number of students attening Sports-a-palooza
164+
2,000+
165+
166+
Please list any special awards, competitions won, etc. for Sport Clubs
167+
- Ice Hockey won the West Coast Hockey Conference Championship, becoming the first CA team to do so. They also went to the ACHA D2 West regionals and finished 11th in the West Region. - Men’s Volleyball won the Southern California Collegiate Volleyball League Division 3 Championship. - Salsa Libre took 1st place in the College Salsa Congress, also won 1st place in College Salsa Open. - Sport Club Council put on the first ever “Big Game” which showcased Women’s and Men’s Rugby on their Senior games (last home game of the season), featuring performances from Fasmode and CSUN Hip Hop. The event drew over 500 spectators.
168+
169+
Please list any point of pride for Sport Clubs (anything not mentioned above)
170+
171+
#
172+
# Recycling
173+
#
174+
175+
Recycling totals including numbers or pounds
176+
Paper: 65,617 pounds Cardboard: 162,195 pounds Pallets: 737 each or 36,850 pounds Bottles & Cans: 32,324 pounds total ( Aluminum cans=623 pounds; Glass = 20,672#; Plastic #1 = 10,074; Plastic #2 = 955#)* Laser Toner Cartridges: 1331 each or 3283# Ink Jet Cartridges: 306 each or 5.7# E-waste: 2783# Total pounds collected in 2016/2017: 303,058 pounds *we can also provide a conversion of number of bottles and cans
177+
178+
Number of volunteers
179+
12
180+
181+
Number of student employees
182+
19
183+
184+
Number of events (include list)
185+
America Recycles Day, RecycleMania, EarthFair, Movie Nights, New Student Orientation, Residential Life Orientation
186+
187+
Please list any point of pride for Recycling (anything not mentioned above)
188+
Exceptional Sustainable Materials Management program through recycling & resource recovery provided to the CSUN campus community; education and outreach to our students, staff, and faculty; Sustainable Office Program (collaborating across campus divisions and departments)

0 commit comments

Comments
 (0)