forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatured-links.html
More file actions
27 lines (22 loc) · 861 Bytes
/
featured-links.html
File metadata and controls
27 lines (22 loc) · 861 Bytes
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
<div class="featured-links container-xl">
<div class="gutter gutter-xl-spacious clearfix">
<!-- Getting Started articles -->
<div class="col-12 col-lg-6 float-left">
<div class="featured-links-heading pb-4">
<h3 class="f5 text-normal text-mono underline-dashed color-text-secondary">{% data ui.toc.getting_started %}</h3>
</div>
{% for link in featuredLinks.gettingStarted %}
{% include featured-link %}
{% endfor %}
</div>
<!-- Popular articles -->
<div class="col-12 col-lg-6 float-left">
<div class="featured-links-heading pb-4">
<h3 class="f5 text-normal text-mono underline-dashed color-text-secondary">{% data ui.toc.popular %}</h3>
</div>
{% for link in featuredLinks.popular %}
{% include featured-link %}
{% endfor %}
</div>
</div>
</div>