-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
55 lines (43 loc) · 2.11 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
---
---
<section>
<h3 id="cabal-sanctioned-actions" class="anchor" href="#cabal-sanctioned-actions" aria-hidden="true">Cabal-sanctioned projects</h3>
<p><a href="https://github.com/Inaimathi/experimentalisp">Experimentalisp</a></p>
<h3 id="experiments" class="anchor" href="#experiments" aria-hidden="true">Experiments</h3>
<p><a href="https://github.com/CompSciCabal/SMRTYPRTY/blob/master/experiments/ndpar/sicp-5.3-gc/gc.gif">SICP GC animated</a></p>
<p><a href="https://github.com/CompSciCabal/SMRTYPRTY/blob/master/experiments/inaimathi/sicp-constraints/compiler.lisp">Constraint solver</a></p>
<p><a href="https://github.com/CompSciCabal/SMRTYPRTY/blob/master/experiments/scott/garbage_collector/plai/tests/gc/good-collectors/mark_and_compact_collector.rkt">Mark and Compact GC</a></p>
<p><a href="https://github.com/CompSciCabal/SMRTYPRTY/blob/master/experiments/dann/josephus.js">Sketch of a Josephus solver</a></p>
</section>
<section>
<h3><p>Cabal News and Meeting Recaps</p></h3>
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
{% else %}
<span class="previous">Previous</span>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
{% else %}
<span class="next ">Next</span>
{% endif %}
</div>
<!-- This loops through the paginated posts -->
{% for post in paginator.posts %}
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<p class="meta">
{% assign author = site.authors[post.author] %}
<span class="date">{{ post.date | date: "%B %-d, %Y" }}.</span>
<span class="author"> Brought to you by: {{ author.display_name }}</span>
<a href="http://github.com/{{author.github}}">
<img src="http://www.gravatar.com/avatar/{{ author.gravatar }}?s=40", alt="{{author.github}}">
</a>
</p>
<div class="content">
{{ post.content }}
</div>
{% endfor %}
</section>