-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuses.html
More file actions
36 lines (33 loc) · 1.21 KB
/
uses.html
File metadata and controls
36 lines (33 loc) · 1.21 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
---
title: Tools
layout: default
description: What I use and recommend. Opinions are my own.
lang: en
ref: uses
---
<div class="container-ns relative flex flex-column flex-row-ns">
<div class="w-100 w-30-ns pr5-ns">
<div class="pv4 pt6-ns sticky-ns">
<h1 class="ph3 ph0-ns mb1">{{ page.title }}</h1>
<div class="w-100 fl f5 lh-title ph3 ph0-ns secondary mb1">
{{site.data.tools.intro[page.lang] | markdownify}}
</div>
</div>
</div>
<div class="w-70-ns mt6-ns">
<div>
{% for tool in site.data.tools.tools %}
<a target="_blank" href="{{tool.url}}" class="link hover-bg-faint fw4 flex flex-column flex-row-ns pa3 ma2 ml0-ns br3 mt2 mb4" href="#0">
<img src="{{tool.img}}" class="db br3 w3 w4-ns h3 h4-ns smooth-shadow"/>
<div class="mt4 mt2-ns pl0 pl4-ns">
<h2 class="f4 f3-ns lh-title mt0 main">{{tool.name}}</h2>
<div class="nt2 mv0 secondary">
{{tool.desc[page.lang] | markdownify}}
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</div>
{% include more.html %}