Skip to content

Commit c819a6e

Browse files
committed
Add material and links to highlighted events.
Fixes #13
1 parent 7cc1bf4 commit c819a6e

12 files changed

Lines changed: 39 additions & 32 deletions

_includes/css/agency.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,6 @@ ul.social-buttons li a:active {
774774
}
775775

776776
.portfolio-modal .modal-content {
777-
padding: 100px 0;
778777
min-height: 100%;
779778
border: 0;
780779
border-radius: 0;

_includes/modals.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,20 @@
1414
<div class="modal-body">
1515
<h2>{{ post.title }}</h2>
1616
<hr class="star-primary">
17-
<img src="img/portfolio/{{ post.img }}" class="img-responsive img-centered" alt="{{ post.alt }}">
17+
{% if post.youtube %}
18+
<iframe width="560" height="315" src="{{ post.youtube }}" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
19+
{% else %}
20+
<img src="img/portfolio/{{ post.img }}" class="img-responsive img-centered" alt="{{ post.alt }}">
21+
{% endif %}
1822
<p>{{ post.description }}</p>
1923
<ul class="list-inline item-details">
20-
<li>Location: <strong>{{ post.client }}</strong></li>
24+
<li>Location: <strong>{{ post.location }}</strong></li>
2125
<li>Date: <strong>{{ post.project-date }}</strong></li>
2226
<li>Category: <strong>{{ post.category }}</strong></li>
2327
</ul>
28+
{% if post.material %}
29+
<p><a href="{{ post.material }}" target="_blank">See presentation material</a></p>
30+
{% endif %}
2431
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
2532
</div>
2633
</div>

_posts/2016-08-10-python-for-humans-1.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ img: python-for-humans.png
88
thumbnail: python-for-humans-thumbnail.png
99
alt: image-alt
1010
project-date: August 2016
11-
client: Hood College
11+
location: Hood College
1212
category: Software Design
1313
description: >-
1414
Kenneth Reitz came into town and discussed his philosophies around

_posts/2016-10-08-hackfrederick-2.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ img: HackFrederick.png
88
thumbnail: HackFrederick-thumbnail.png
99
alt: image-alt
1010
project-date: October 2016
11-
client: Hood College
11+
location: Hood College
1212
category: Community Development
1313
description: >-
1414
This was an event conceived by a number of the Technology Meetup Leaders of the Frederick area.

_posts/2016-10-12-pygame-4.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ img: pygame-logo.png
88
thumbnail: pygame-logo-thumbnail.png
99
alt: image-alt
1010
project-date: October 2016
11-
client: Hood College
11+
location: Hood College
1212
category: Game Development
1313
description: >-
1414
At this event,
@@ -17,5 +17,6 @@ description: >-
1717
Joe Naegele showed the group the techniques that are needed to make 2D games.
1818
We looked at some examples of popular games made with Python
1919
and had some live code samples to experience game development firsthand.
20+
material: https://github.com/python-frederick/talks/tree/master/2016-10-pygame
2021

2122
---

_posts/2016-12-14-django-3.markdown

Lines changed: 0 additions & 20 deletions
This file was deleted.

_posts/2017-06-14-twilio-5.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ img: twilio-logo.png
88
thumbnail: twilio-logo-thumbnail.png
99
alt: image-alt
1010
project-date: June 2017
11-
client: Start Bootstrap
11+
location: Hood College
1212
category: Web Services
1313
description: >-
1414
Matt Makai led a live demonstration of many Twilio SMS and voice services using Python.

_posts/2017-07-12-pyspark-6.markdown

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ img: pyspark.png
88
thumbnail: pyspark-thumbnail.png
99
alt: image-alt
1010
project-date: July 2017
11-
client: Hood College
11+
location: Hood College
1212
category: Big Data
1313
description: >-
14-
Patrick Pierson, DevOps Engineer at Ion Channel, walked through a live deployment of Pyspark
14+
Patrick Pierson, DevOps Engineer at Ion Channel, walked through a live deployment of PySpark
1515
using Amazon Elastic Map Reduce (EMR).
1616
He guided a captive audience through all the steps to process terabytes of data in minutes.
17-
Finally, Patrick scaled up the number of virtual machines with no downtime-all within Pyspark!
18-
Patrick's presentation and repository can be found at
19-
<a href="https://github.com/python-frederick/pyspark">https://github.com/python-frederick/pyspark</a>.
17+
Finally, Patrick scaled up the number of virtual machines with no downtime-all within PySpark!
18+
material: https://github.com/python-frederick/pyspark
2019

2120
---

_posts/2017-12-13-data-science.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: Data science in Python
3+
subtitle: An overview of data science tools
4+
layout: default
5+
modal-id: 3
6+
date: 2017-12-13
7+
thumbnail: anaconda.png
8+
youtube: https://www.youtube.com/embed/3kTOLVD0ZCg
9+
project-date: December 2017
10+
location: Frederick Community College
11+
category: Data Science
12+
description: >-
13+
Christine Lee gave a broad overview
14+
of the data science tools
15+
that are available
16+
in the Python world.
17+
From data visualizations to symbolic math,
18+
there was a little bit of everything to cover.
19+
material: https://github.com/python-frederick/talks/tree/master/2017-12-data-science
20+
21+
---

img/portfolio/anaconda.png

40.2 KB
Loading

0 commit comments

Comments
 (0)