-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
103 lines (95 loc) · 3.61 KB
/
archive.html
File metadata and controls
103 lines (95 loc) · 3.61 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
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
---
layout: layout
title: Archive
---
<div class="post-wrapper">
<h1>Archive</h1>
{% for post in site.posts %}
{% capture postmonth %}{{ post.date | date: "%B" }}{% endcapture %}
{% capture postyear %}{{ post.date | date: "%Y" }}{% endcapture %}
{% if postmonth != month or postyear != year %}
{% assign month = postmonth %}
{% assign year = postyear %}
{% if forloop.first %}
{% else %}
</ul>
{% endif %}
<a name="{{ month }}{{ year }}"></a>
<h2>{{ month }} {{ year }}</h2>
<ul>
{% endif %}
<li><a href="{{ post.url | remove:'.html' }}">{{ post.title }}</a> ({{ post.date | date_to_string }})</li>
{% endfor %}
</ul>
</div>
<div class="post-wrapper">
<h2>Older</h2>
<ul>
<li>
<a href="/creating-your-first-signalr-mvc-project" title="">Creating your first SignalR MVC Project</a>
</li>
<li>
<a href="/the-cake-is-not-a-lie" title="">The Cake is not a lie</a>
</li>
<li>
<a href="/feed-the-good-wolf" title="">Feed the good Wolf</a>
</li>
<li>
<a href="/manipulating-the-selected-date-of-the-jquery-ui-datepicker" title="">Manipulating the selected date of the jQuery UI datepicker</a>
</li>
<li>
<a href="/top-5-eu-cookie-acceptance-messages" title="">Top 5 EU Cookie acceptance messages</a>
</li>
<li>
<a href="/add-ordinal-suffic-to-formatted-datetime-string" title="">Add ordinal suffic to formatted datetime string</a>
</li>
<li>
<a href="/asp.net-checkboxlist-missing-value-attribute" title="">ASP.Net Checkboxlist missing value attribute</a>
</li>
<li>
<a href="/mvc-actionlink-with-html-content" title="">MVC Action link with HTML content</a>
</li>
<li>
<a href="/having-fun-with-incredibox" title="">Having fun with Incredibox</a>
</li>
<li>
<a href="/asp-net-maxhttpcollectionkeys-in-app-config" title="">ASP.Net MaxHttpCollectionKeys in App.config</a>
</li>
<li>
<a href="/jquery-and-jquery-ui-fallbacks" title="">jQuery and jQuery UI Fallbacks</a>
</li>
<li>
<a href="/mvc-3-password-length-dataannotation" title="">MVC 3 Password Length DataAnnotation</a>
</li>
<li>
<a href="/jquery-ajax-get-request-in-ie" title="">jQuery Ajax GET request in IE</a>
</li>
<li>
<a href="/force-ie9-into-quirks-mode" title="">Force IE9 into quirks mode</a>
</li>
<li>
<a href="/enabling-client-side-form-validation" title="">Enabling client side form validation</a>
</li>
<li>
<a href="/modify-asp.net-textbox-name-attribute" title="">Modify ASP.Net TextBox name attribute</a>
</li>
<li>
<a href="/jquery-ui-datetimepicker-plugin" title="">jQuery UI datetimepicker plugin</a>
</li>
<li>
<a href="/marc-martel-nessun-dorma" title="">Marc Martel Nessun Dorma</a>
</li>
<li>
<a href="/asp.net-web-service-case-sensitivity-issues" title="">ASP.Net Web Service case sensitivity issues</a>
</li>
<li>
<a href="/render-asp.net-controls-without-form-tag" title="">Render ASP.Net controls without form tag</a>
</li>
<li>
<a href="/contrib-youtube-orchard-field" title="">Contrib YouTube Orchard field</a>
</li>
<li>
<a href="/marc-freddi-mercury-martel" title="">Marc "Freddi Mercury" Martel</a>
</li>
</ul>
</div>