-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 952 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 952 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
---
layout: default
title: P2EE - PHP for the Enterprise
---
<div id="home">
<div id="about">
<h1>What is P2EE?</h1>
<p>The <a href="https://github.com/P2EE" class="user-mention">@P2EE</a> Organisation is founded, to bring all the cool and nifty features Java has to the PHP World. We also bring cool stuff from all the other Language World to PHP.
Because we also want this Features!</p>
</div>
<div id="articles">
<ul class="posts">
{% for post in site.posts limit:5 %}
<li>
<article>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<span class="date">{{ post.date | date_to_string }}</span>
<div class="article-content">
{{ post.content }}
</div>
</article>
</li>
{% endfor %}
</ul>
</div>
</div>