Sha256: 9a7396db5e91d6672dff087cc5c6aed19ac4f4d75dca614052798d658c8cc5a0

Contents?: true

Size: 560 Bytes

Versions: 13

Compression:

Stored size: 560 Bytes

Contents

<html>
<head>
    <title>TodoList</title>
    <style>
        table {
            width: 100%;
        }

        tr {
            background: #efe;
            width: 100%;
        }

        tr:hover {
            background: #dfd;
        }

        td.title {
            font-weight: bold;
            width: 60%;
        }

        td.status {
            margin: 1em;
        }

        a {
            color: #3a3;
        }
    </style>
</head>
<body>
<h1>$heading$</h1>
<a href="/new">New Task</a>
<table>
    $tasks:tasks()$
</table>
</body>
</html>

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
starapor-slippers-0.0.0 examples/todolist/template/index.st
starapor-slippers-0.0.1 examples/todolist/template/index.st
starapor-slippers-0.0.2 examples/todolist/template/index.st
starapor-slippers-0.0.3 examples/todolist/template/index.st
starapor-slippers-0.0.5 examples/todolist/view/index.st
starapor-slippers-0.0.6 examples/todolist/view/index.st
starapor-slippers-0.0.8 examples/todolist/view/index.st
starapor-slippers-0.0.9 examples/todolist/view/index.st
slippers-0.0.14 examples/todolist/view/index.st
slippers-0.0.13 examples/todolist/view/index.st
slippers-0.0.12 examples/todolist/view/index.st
slippers-0.0.11 examples/todolist/view/index.st
slippers-0.0.10 examples/todolist/view/index.st