-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 960 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
---
layout: default
---
<div class="card-panel">
<div class="card-image">
<img width="100%" alt="title image" src="{{ site.baseurl }}/images/card.jpg"/>
<span class="card-title">Low Level Hardware Development</span>
</div>
<div class="card-content">
This is a IO Guide for working in low level Assembly and C language with GCC, LD, NASM, GDB and DDD. Most of the informations are based on various sources but not limited to <a href="http://wiki.osdev.org">OS DEV Wiki</a>
</div>
<div class="card-action"></div>
</div>
<div class="col s11">
<div class="divider"></div>
<div class="section">
<h5 >Posts</h1>
</div>
{% for post in site.posts %}
<div class="section">
<h5 >
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title | escape }}</a>
</h5>
<p> {{ post.date | date: "%b %-d, %Y" }} </p>
</div>
{% endfor %}
</div>