forked from developer-portal/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tech.html
32 lines (30 loc) · 824 Bytes
/
tech.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
---
layout: section
highlight_section: tech
title: Languages & databases
description: Languages and their modules available in Fedora. Installing databases and their configuration.
section: tech
category-name: tech
attribution: Silk Reeling Machine at Tomioka Silk Mill by aotaro on Flickr, CC-BY-2.0
photo-link: https://www.flickr.com/photos/aotaro/20952868875/
---
<div class="row">
<div class="col-sm-12">
<h2> Languages </h2>
</div>
{% for p in site.pages %}
{% if p.section == "tech-languages" %}
{% include content-link-panel.html %}
{% endif %}
{% endfor %}
</div>
<div class="row">
<div class="col-sm-12">
<h2> Databases </h2>
</div>
{% for p in site.pages %}
{% if p.section == "tech-database" %}
{% include content-link-panel.html %}
{% endif %}
{% endfor %}
</div>