~/selfhut

selfhut/templates/index.html.hbs -rw-r--r-- 354 B
0545f2a7 — Arthur Melton start of stuff working 2 years ago

            
0545f2a7 Arthur Melton
94e2262d arthurmelton
05b81ea3 arthurmelton
94e2262d arthurmelton
0545f2a7 Arthur Melton
cbd6d8a5 arthurmelton



















































1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{#*inline "page"}}

<section id="hello">
    <h1>{{ user }}!</h1>
    <h2>{{{ description }}}</h2>
    <h3>Here are your repos:</h3>
    <ul>
    {{#each repos}}
        <div>  
            <a href="/{{this.name}}">{{ this.name }}</a>
            <p>{{ this.description }}</p>
        </div>
    {{/each}}
    </ul>
</section>

{{/inline}}
{{> layout}}