-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
272 lines (237 loc) · 8.95 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
---
layout: default
title: CAES Computing Resources Unit
home: true
---
{% include geoshapes.html %}
<header class="container">
<div class="row justify-content-between">
<div class="col">
<div class="brand">
<!-- <a href="/"><img src="/media/logomark.svg" alt="CAES Icon"></a> -->
<h1 >
<a href="/">UC DAVIS CAES <br>
Computing
Resources Unit
</a>
</h1>
</div>
</div>
</header>
<div class="container">
<nav class="homepage-nav">
<ul class="nav" id="nav_upperlevel">
<li class="nav-item">
{% include id-team.html %}
<a class="nav-link" href="/team">Team</a>
</li>
<li class="nav-item">
{% include id-portfolio.html %}
<a class="nav-link" href="/portfolio">Portfolio</a>
</li>
<li class="nav-item">
{% include id-services.html %}
<a class="nav-link" href="/services">Services</a>
</li>
<li class="nav-item">
{% include id-documentation.html %}
<a class="nav-link" href="/documentation">Documentation</a>
</li>
</ul>
</nav>
<div class="row">
<div class="col-md-7">
<p class="lead">
The goal of the Computing Resources Unit is to provide the best possible customer service, application development, and technology infrastructure to support the business needs of the Dean’s Office and the College of Agricultural & Environmental Sciences and its departments.
</p>
</div>
</div>
<div class="row mt-5 mb-8 justify-content-between">
<div class="col-lg-6">
<h2>
Latest Projects
</h2>
{% assign sorted = site.portfolio | sort: 'date' | reverse %}
{% for post in sorted limit: 4 %}
<div class="featured-proj" style="border-color:#{{ post.bgcolor }}">
<p class="featured-proj-title">{{ post.title }}</p>
<div class="flexin">
<p class="featured-proj-date">
{{ post.date | date: "%B %Y" }}
</p>
</div>
<p>
{{ post.description }}
</p>
<div class="flexin">
{% if post.developers %}
<div class="profile-wrap">
{% for developer in post.developers %} {% assign dev = site.team |
where: "name", developer | first %} {% include team_tooltip.html
text=dev.name image=dev.image %} {% endfor %}
</div>
{% endif %}
<a style="margin-right:12px; margin-left:12px;"target="_blank" href="{{ post.github }}"
><i class="fab fa-github fa-2x"></i
></a>
{% if post.current-url %}
<a target="_blank" style="margin-right:12px;" href="{{ post.current-url }}"
><i class="fas fa-external-link-square-alt fa-2x"></i></a>
{% endif %}
{% if post.image %}
<!-- Button trigger modal -->
<a style="cursor:pointer" data-toggle="modal" data-target="#{{ post.image }}">
<i class="fas fa-camera fa-2x"></i>
</a>
<!-- Modal -->
<div class="modal portfolio-modal fade" id="{{ post.image }}" tabindex="-1" aria-labelledby="{{ post.image }}" aria-hidden="true">
<div class="modal-dialog">
<img
class="img-fluid"
src="/media/portfolio/{{ post.image }}.png"
alt="{{ post.image }} screenshot"
/>
</div>
</div>
{% endif %}
</div>
</div>
<!-- <a href="{{ post.current-url }}" target="_blank">
<div class="featured-proj">
<div class="row" style="border-color:#{{ post.bgcolor }}">
<div class="col-sm-6" style="padding-right:0px">
<img class="img-fluid" src="/media/portfolio/{{ post.image }}.png" alt="project_thumbnail">
</div>
<div class="col-sm-6 align-self-center" style="padding-left:0px">
<h1></h1>
<p class="lead">{{ post.date | date: "%B %Y" }} • {{ post.audience }}</p>
</div>
</div>
</div>
</a> -->
{% endfor %}
</div>
<div class="col-lg-6 faq-wrap">
<h2>Quick Links</h2>
<ul class="homepage-hotbuttons">
<li>
<a target="_blank" href="/media/files/CAESInformationTechnologyResourcesGuidelines22.pdf">
<i class="fa fa-file"></i>Technology Resource Guidelines
</a>
</li>
<li>
<a target="_blank" href="/media/files/EmeritiandStaffRetireeITsupportguidelinesFINAL.pdf">
<i class="fa fa-file"></i>Emeriti and Staff Retirees IT Support Guidelines
</a>
</li>
<li>
<a target="_blank" href="https://caeshelp.ucdavis.edu/">
<i class="fa fa-flag"></i>Help Desk Ticket
</a>
</li>
<li>
<a href="/documentation/helpdesk/working-remotely">
<i class="fa fa-home"></i>How to Work Remotely
</a>
</li>
<li>
<a href="/documentation/helpdesk/get-an-account">
<i class="fa fa-suitcase"></i>Get an Account
</a>
</li>
<li>
<a href="/documentation/helpdesk/out-of-office">
<i class="fa fa-paper-plane"></i>Out of Office Reply
</a>
</li>
<li>
<a target="_blank" href="https://365.ucdavis.edu/">
<i class="fa fa-envelope"></i>Outlook Web App
</a>
</li>
<li>
<a href="/documentation/helpdesk/dafis-connect">
<i class="fas fa-code-branch"></i>DaFis Connect
</a>
</li>
<li>
<a href="/documentation/helpdesk/temporary-affiliate-form">
<i class="fa fa-edit"></i>Temporary Affiliate Form
</a>
</li>
<li>
<a target="_blank" href="https://ucdavisit.service-now.com/servicehub/?id=ucd_kb_article&sysparm_article=KB0000101">
<i class="fas fa-key"></i>Change your Kerberos Password
</a>
</li>
</ul>
</div>
</div>
<div class="row no-gutters mb-8">
<div class="col-md-4 card">
<div class="card-content">
<h3>Help Desk and infrastructure</h3>
<p>Providing support to over 350 users across the college! and counting!</p>
<p><a href="/documentation">Learn more about our standards and FAQs</a></p>
<div class="profile-wrap">
{% assign team = site.team | where: "categories","helpdesk" %}
{% for post in team %}
{% include team_tooltip.html text=post.name image=post.image %}
{% endfor %}
</div>
</div>
</div>
<div class="col-md-4 card">
<div class="card-content">
<h3>App Development</h3>
<p>Need to track T.A. hours? How about mapping power plant efficiency based on ARC GIS data? There's an app for that (made by us!)</p>
<p><a href="/portfolio">Explore the our web applications</a></p>
<div class="profile-wrap">
{% assign team = site.team | where: "categories","webdev" %}
{% for post in team %}
{% include team_tooltip.html text=post.name image=post.image %}
{% endfor %}
</div>
</div>
</div>
<div class="col-md-4 card">
<div class="card-content">
<h3>Web Development</h3>
<p>From magnificent 50th anniversary award sites to UC Davis standard informational pages we've got it all!</p>
<p><a href="/portfolio">See our work here</a></p>
<div class="profile-wrap">
{% assign team = site.team | where: "categories","design" %}
{% for post in team %}
{% include team_tooltip.html text=post.name image=post.image %}
{% endfor %}
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card">
<div class="card-content">
<h3>Get in Contact</h3>
<iframe frameborder="0" height="300" marginheight="0" marginwidth="0" scrolling="no" src="https://maps.google.com/maps/ms?msa=0&msid=202755517476915240000.0004df609efcb0f5c8750&ie=UTF8&t=m&ll=38.536996,-121.749179&spn=0.001678,0.00457&z=17&output=embed" width="100%"></iframe>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-content">
<h3>Help Desk</h3>
<p><b>Location:</b> 150 Mrak Hall on the 1st Floor <br>
<b>Phone:</b> (530) 754-7122 <br>
<b>Email:</b> <a class="email-link" href="mailto:[email protected]" target="_self" title="">[email protected]</a>
</p>
<h3 style="margin-bottom:0px;">Web, Application Support and Network Administration</h3>
<p><b>Location:</b> 38 Mrak Hall in the basement<br>
<b>Email:</b> <br> For Applications:<a class="email-link" href="mailto:[email protected]" target="_self" title=""> [email protected]</a><br> For Websites:
<a class="email-link" href="mailto:[email protected]" target="_self" title=""> [email protected]</a>
</p>
</div>
</div>
</div>
</div>
</div>