clarify ipfs support, add missing titles for pages

This commit is contained in:
Kyle Drake 2019-01-26 14:44:23 -08:00
parent 556bc9d2be
commit a2677bb930
11 changed files with 32 additions and 4 deletions

View file

@ -1,5 +1,6 @@
get '/site_files/new_page' do
require_login
@title = 'New Page'
erb :'site_files/new_page'
end
@ -218,13 +219,16 @@ get %r{\/site_files\/text_editor\/(.+)} do
end
get '/site_files/allowed_types' do
@title = 'Allowed File Types'
erb :'site_files/allowed_types'
end
get '/site_files/hotlinking' do
@title = 'Hotlinking Information'
erb :'site_files/hotlinking'
end
get '/site_files/mount_info' do
@title = 'Site Mount Information'
erb :'site_files/mount_info'
end