-
Notifications
You must be signed in to change notification settings - Fork 60
/
start.html
36 lines (36 loc) · 1008 Bytes
/
start.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
---
layout: section
highlight_section: start
title: Start a project
description: How to do web, mobile, Arduino, and RaspberryPi development on Fedora.
section: start
category-name: start
attribution: Tools of the Trade by Cat Burston on Flickr, CC-BY-2.0
photo-link: https://www.flickr.com/photos/catt1788/6335937959/
---
<div class="row">
<div class="col-sm-12">
<h2> Software Application Creation Guides </h2>
</div>
{% for p in site.pages %}
{% if p.section == "start-sw" %}
{% include content-link-panel.html %}
{% endif %}
{% endfor %}
<div class="col-sm-12">
<h2> Hardware Device Project Creation Guides </h2>
</div>
{% for p in site.pages %}
{% if p.section == "start-hw" %}
{% include content-link-panel.html %}
{% endif %}
{% endfor %}
<div class="col-sm-12">
<h2> Project Collaboration Guides </h2>
</div>
{% for p in site.pages %}
{% if p.section == "start-tips" %}
{% include content-link-panel.html %}
{% endif %}
{% endfor %}
</div>