-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1011 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (28 loc) · 1011 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
28
29
---
layout: default
title: All your language specs, in one place
---
<div class="profile-header">
<div class="row mt-12 mb-5">
<div class="col-sm">
<h1>All your language specs, in one place</h1>
<h3>The easiest way to find the formal language specification for your favorite programming language.</h3>
</div>
</div>
</div>
<div class="row">
<ul class="list-inline pt-4 mt-4">
{%- for specData in site.data.specs -%}
<li class="list-inline-item spec-block px-3 my-3 border-bottom">
<a href="{{ specData.specUrl }}" target="_blank" title="{{ specData.title }}">
{%- if specData.icon -%}
<span class="icon {{ specData.icon }}"></span>
{%- else -%}
<img class="icon icon-logo img-fluid" src="{{ site.url }}/assets/img/{{ specData.logo }}"/>
{%- endif -%}
<p class="text-center text-muted">{{ specData.title }}</p>
</a>
</li>
{%- endfor -%}
</ul>
</div>