Skip to content

Commit 69d549f

Browse files
committed
Add base of accounting section
1 parent 2224cc1 commit 69d549f

File tree

6 files changed

+63
-3
lines changed

6 files changed

+63
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.stakx-cache/
22
_site/
3+
.idea/

_config.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Build Settings
22
exclude:
3-
- assets/originals
4-
- assets/photoshop
3+
- assets/originals/
4+
- assets/photoshop/
55
- data.txt
6+
- .idea/
67

78
pageviews:
89
- _pages

_departments/accounting.html.twig

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{% extends '_layouts/department-section.html.twig' %}
2+
3+
{% set department = 'Accounting' %}
4+
5+
{% block reportBody %}
6+
<div class="row mb-5">
7+
<div class="col-lg-6">
8+
<div class="text-center">
9+
<h3 class="t-2 mb-0">Operating Budget</h3>
10+
<span class="t-5">$8,637,455</span>
11+
</div>
12+
</div>
13+
<div class="col-lg-6">
14+
<h3 class="t-2 mb-3">Accomplishments</h3>
15+
16+
<ul class="mb-0">
17+
<li>Funded the $5.7 million Sustainability Center construction project this year.</li>
18+
<li>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.</li>
19+
</ul>
20+
</div>
21+
</div>
22+
23+
<div class="row text-center mb-5">
24+
<div class="col-md-6 mb-4">
25+
<h3 class="t-2">Club Accounts</h3>
26+
27+
<p class="t-5 mb-0">280</p>
28+
</div>
29+
<div class="col-md-6 mb-4">
30+
<h3 class="t-2">Departments <sup>*</sup></h3>
31+
32+
<p class="t-5 mb-0">380</p>
33+
<small><strong>*</strong> departments overall, including STAR, campus and AS related</small>
34+
</div>
35+
</div>
36+
37+
<div class="row text-center">
38+
<div class="col-md-6 col-lg-4 mb-5 mb-lg-4">
39+
<h3 class="t-2">Student Travel Allocated</h3>
40+
<p class="t-4 mb-0">$204,934</p>
41+
<p class="t-1 mb-0">from 192 requests</p>
42+
</div>
43+
<div class="col-md-6 col-lg-4 mb-5 mb-lg-4">
44+
<h3 class="t-2">Club Funding</h3>
45+
<p class="t-4 mb-0">$151,402</p>
46+
<p class="t-1 mb-0">130 requests funded</p>
47+
</div>
48+
<div class="col-md-6 col-lg-4 offset-md-3 offset-lg-0 mb-5 mb-lg-4">
49+
<h3 class="t-2">Scholarships and Grants</h3>
50+
<p class="t-4 mb-0">$173,800</p>
51+
</div>
52+
</div>
53+
{% endblock %}

_departments/campus-recycling.html.twig

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{% block reportBody %}
66
<div class="row mb-5">
7-
<div class="col-md-4">
7+
<div class="col-md-6">
88
<div class="d-flex flex-row justify-content-center">
99
<span class="t-5 pr-3">12</span>
1010
<span class="f-serif t-1 u-line-break">

_pages/index.html.twig

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ permalink: /
55
{% extends '_layouts/base.html.twig' %}
66

77
{% block body %}
8+
{% include '_departments/accounting.html.twig' %}
89
{% include '_departments/sport-clubs.html.twig' %}
910
{% include '_departments/campus-recycling.html.twig' %}
1011
{% endblock %}

assets/css/styles.css

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ h4, h5, h6 {
1212
border-top: 10px solid #9e0000;
1313
}
1414

15+
.department--accounting {
16+
background-image: url('../images/background--accounting.jpg');
17+
}
18+
1519
.department--sustainability_and_recycling {
1620
background-image: url('../images/background--sustainability_and_recycling.jpg');
1721
}

0 commit comments

Comments
 (0)