mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-09 22:10:18 -04:00
21 lines
738 B
HTML
21 lines
738 B
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="{% static 'css/events.css' %}" rel="stylesheet" />
|
|
{% include 'head.html' %}
|
|
<title>Events - TJSGA</title>
|
|
</head>
|
|
<body>
|
|
{% include 'header.html' %}
|
|
<div id="wrapper" class="fluid">
|
|
<section id="calendar">
|
|
<iframe src="https://calendar.google.com/calendar/b/3/embed?showTitle=0&showPrint=0&height=600&wkst=1&bgcolor=%23ffffff&src=sga.tjhsst%40gmail.com&color=%23711616&ctz=America%2FNew_York" style="border-width:0" width="800" height="600" frameborder="0" scrolling="no"></iframe>
|
|
</section>
|
|
<section id="events">
|
|
</section>
|
|
</div>
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|