Add disclaimer to docs

This commit is contained in:
Jonathan Rudenberg 2012-08-22 14:03:45 -04:00
parent 68ce1aeaff
commit 8bd63ad1c4
3 changed files with 17 additions and 4 deletions

View file

@ -71,6 +71,7 @@ article {
article date {
display: block;
margin-bottom: 10px;
margin-top: 10px;
}
footer {
@ -81,6 +82,10 @@ footer {
border-top: 1px grey solid;
}
.doc-nav {
.doc {
margin-top: 10px;
}
.alert h4 {
font-weight: bold;
}

View file

@ -1,5 +1,5 @@
article
h1 == link_to @post[:title], @post.identifier.chop
- time = Time.parse(@post[:created_at])
date title=time.strftime('%F %R %Z') datetime=time.strftime('%FT%T%:z') pubdate=true = time.strftime('%B %-d, %Y')
h1 == link_to @post[:title], @post.identifier.chop
== @content || @post.compiled_content

View file

@ -3,9 +3,9 @@ html lang='en'
head == render '_head'
body
== render '_navbar'
.container
.container.doc
.row
.span2.doc-nav
.span2
ul.nav.nav-list.well
li.nav-header Tent
li == nav_link_with_active 'Protocol Introduction', '/docs'
@ -21,5 +21,13 @@ html lang='en'
li == nav_link_with_active 'Conversation', '/docs/example-conversation'
li == nav_link_with_active 'Conversation Thread', '/docs/example-conversation-thread'
.span8
.alert.alert-block
h4 Alpha Documentation
p These docs are very rough, incorrect, and incomplete. They will be modified heavily over the next few weeks.
p
' Please contribute by making Pull Requests and Issues on the
== link_to 'GitHub repository', 'https://github.com/tent/tent.io'
| .
== yield
== render '_footer'