-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiframe.htm
More file actions
32 lines (32 loc) · 1.06 KB
/
iframe.htm
File metadata and controls
32 lines (32 loc) · 1.06 KB
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
---
layout: null
---
<!DOCTYPE html>
<html lang='en'>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style type="text/css">
{% capture include_to_scssify %}
{% include iframe.scss %}
{% endcapture %}
{{ include_to_scssify | scssify }}
</style>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/pym/0.4.5/pym.min.js"></script>
</head>
<body>
{% for post in site.posts limit:3 %}
{% unless post.draft %}
<h3><a href="http://opensourcecu.com/{{ post.url }}" target="_blank">{{ post.title}}</a> <span class="meta">{{ post.date | date: "%a, %e %b %Y" }}</h3>
{{ post.excerpt }} <a href="http://opensourcecu.com/{{ post.url }}" target="_blank"> »</a>
{% endunless %}
{% endfor %}
<br />
<br />
<script>
var pymChild = new pym.Child();
pym.Child({ polling: 500 });
</script>
</script>
</body>
</html>