new favico logo
This commit is contained in:
parent
a6d18cb05f
commit
37cb858eec
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
|
@ -6,10 +6,12 @@ html
|
|||
= yield(:meta)
|
||||
title
|
||||
= content_for?(:title) ? yield(:title) + " | #{ENV['SITE_NAME']}" : ENV['SITE_NAME']
|
||||
= stylesheet_link_tag "application"
|
||||
= stylesheet_link_tag "application", media: 'all'
|
||||
= javascript_include_tag "vendor/modernizr"
|
||||
= javascript_include_tag "application"
|
||||
= csrf_meta_tags
|
||||
/ 增加 favico 图标
|
||||
link href="/favicon.png" type='image/png' rel="icon"
|
||||
body
|
||||
.off-canvas-wrap
|
||||
.inner-wrap
|
||||
|
|
|
@ -30,5 +30,5 @@ WBlog::Application.routes.draw do
|
|||
end
|
||||
|
||||
get '/about' => 'home#index'
|
||||
get '/:type' => 'archives#index'
|
||||
get '/:type' => 'archives#index', constraints: { type: /tech|life|creator/ }
|
||||
end
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
Loading…
Reference in New Issue