-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
33 lines (28 loc) · 870 Bytes
/
index.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
---
layout: default
title: Step By Step Li3
---
<div class="row">
<div class="col-md-3 hidden-sm hidden-xs">
<h1>Chapters</h1>
<ol class="posts">
{% assign url = page.url|remove:'index.html' %}
{% for post in site.posts %}
<li>
{% if url == post.url %}
» {{ post.title }}
{% else %}
<a href="{{ post.url | remove_first:'/' }}">{{ post.title }}</a>
{% endif %}
</li>
{% endfor %}
</ol>
</div>
<div class="col-md-9" role="main">
<h1>PHP web apps - one thing at a time!</h1>
<p>Welcome to Step By Step Li3! Here you'll follow the process of building a fully working web app with Li3!</p>
<p>Please get started with the <a href="introduction.html">introduction</a>!</p>
<p><a class="btn btn-success btn-lg" href="introduction.html">Start reading! »</a></p>
<hr/>
</div>
</div>