Add disclaimer to docs
This commit is contained in:
parent
68ce1aeaff
commit
8bd63ad1c4
3 changed files with 17 additions and 4 deletions
|
@ -71,6 +71,7 @@ article {
|
||||||
article date {
|
article date {
|
||||||
display: block;
|
display: block;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
@ -81,6 +82,10 @@ footer {
|
||||||
border-top: 1px grey solid;
|
border-top: 1px grey solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.doc-nav {
|
.doc {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.alert h4 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
article
|
article
|
||||||
h1 == link_to @post[:title], @post.identifier.chop
|
|
||||||
- time = Time.parse(@post[:created_at])
|
- 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')
|
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
|
== @content || @post.compiled_content
|
||||||
|
|
|
@ -3,9 +3,9 @@ html lang='en'
|
||||||
head == render '_head'
|
head == render '_head'
|
||||||
body
|
body
|
||||||
== render '_navbar'
|
== render '_navbar'
|
||||||
.container
|
.container.doc
|
||||||
.row
|
.row
|
||||||
.span2.doc-nav
|
.span2
|
||||||
ul.nav.nav-list.well
|
ul.nav.nav-list.well
|
||||||
li.nav-header Tent
|
li.nav-header Tent
|
||||||
li == nav_link_with_active 'Protocol Introduction', '/docs'
|
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', '/docs/example-conversation'
|
||||||
li == nav_link_with_active 'Conversation Thread', '/docs/example-conversation-thread'
|
li == nav_link_with_active 'Conversation Thread', '/docs/example-conversation-thread'
|
||||||
.span8
|
.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
|
== yield
|
||||||
== render '_footer'
|
== render '_footer'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue