Skip to content

Commit ae25d27

Browse files
committed
Linked to and styled example stone
1 parent d2c3f61 commit ae25d27

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

exampleStone.html renamed to arcnews.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
layout: default
33
---
4-
4+
<div>
55
<div id='instructions'>
66
<div>
77
<h1>arc-news</h1>
8-
<h3> Hacker News Style Forum.</h2>
8+
<h3> Hacker News Style Forum.</h3>
99
</div>
1010
<div class="codebox">
1111
<h3>Documentation </h3>
@@ -28,14 +28,15 @@ <h3>Documentation </h3>
2828

2929
<div id="stoneSignature">
3030
<h3> Author</h3>
31-
<img src='pg.jpg', class='avatar'>
31+
<img src='/assets/pg.jpg', class='avatar'>
3232
<p>Paul Graham &lt;[email protected]&gt;</p>
3333
<hr>
3434
<h3> Contributors</h3>
35-
<img src='kartik.jpg', class='avatar'>
36-
<img src='pg.jpg', class='avatar'>
37-
<img src='sctb.jpg', class='avatar'>
35+
<img src='/assets/kartik.jpg', class='avatar'>
36+
<img src='/assets/pg.jpg', class='avatar'>
37+
<img src='/assets/sctb.jpg', class='avatar'>
3838
<hr>
3939
<h3> Repository </h3>
4040
<a href='github.com/arc-news/arc-news'>github.com/arc-news/arc-news</a>
4141
</div>
42+
</div>

assets/style.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,15 @@ nav a:hover{
102102
#instructions{
103103
width:75%;
104104
display: inline-block;
105-
105+
position: relative;
106+
top: -90;
106107
}
107108
#stoneSignature{
108109
width:20%;
109110
display:inline-block;
110111
border-left: 2px solid #ffbb33;
111112
padding:1%;
113+
112114
}
113115
.avatar{
114116
display: inline-block;

stones.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,20 @@
44
<h1> stones</h1>
55
<div>
66
<table>
7-
<tr><th>name</th><th>description</th><th>url</th></tr>
7+
<tr><th>name</th><th>description</th><th>url</th><th>author</th></tr>
8+
<tr>
9+
<td>arcnews </td>
10+
<td> Hackernews style App</td>
11+
<td><a href="./arcnews">/arcnews</a></td>
12+
<td></td>
13+
</tr>
814
{% for stone in site.data.stones %}
915

1016
<tr>
1117
<td>{{ stone.name }} </td>
1218
<td> {{stone.description}}</td>
1319
<td><a href="http://github.com/arclanguage/anarki/blob/master/lib{{stone.file}}">{{ stone.file }}</a></td>
20+
<td></td>
1421
</tr>
1522
{% endfor %}
1623
</table>

0 commit comments

Comments
 (0)