-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtips.html
58 lines (44 loc) · 1.58 KB
/
tips.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
55
56
57
---
layout: page
title: Posted Tips
permalink: /tips/
---
<div class="small-12 medium-5 columns">
<p>This page is a compiled list of software, workflow, and design tips. Use the following index to look for tips by name.</p>
<p>Another way to navigate through posted tips is by going to the <a href="../tags/" alt="Tags Page">Tags</a> page and searching for a specific tag. </p>
<p>
</div>
<div class="small-12 medium-7 columns">
{% assign tip_order = site.tips | sort:date | reverse %}
{% for tip in tip_order %}
<div class="small-12 medium-6 columns">
<p><a class="blackLink" href="#{{ tip.title }}">{{ tip.title }}</a></p>
</div>
{% endfor %}
</div>
<div class="small-12 columns line">
</div>
<div class="small-12 columns">
<h3 class="tips-page-title">Posted Tips Feed</h3>
</div>
{% assign tip_order = site.tips | sort:date | reverse %}
{% for tip in tip_order %}
<div class="small-12 columns">
<div class="tip-container" id="{{ tip.title }}">
<p class="tip-title"><a class="blackLink" alt="{{ tip.title }}" title="{{ tip.title }}" href="{{ tip.url }}">{{ tip.title }}</a></p>
<div class="tag-section">
{% for tag in tip.tags %}
<a class="tag-link" href="/tags/#{{ tag | prepend: site.baseurl }}">
<div class="tag-container {{ tag }}">
<p class="tag-text">{{ tag }}</p>
</div>
</a>
{% endfor %}
</div>
<p class="metadata">Author: {{ tip.author }}</p>
<p class="description">{{ tip.content }}</p>
<div class="small-12 columns line">
</div>
</div>
</div>
{% endfor %}