about summary refs log tree commit diff stats
path: root/app/views/layouts
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-06-29 14:58:05 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-06-29 14:58:05 -0400
commit4cffc8c90b5e316baf3e49b665dd67ea9e965272 (patch)
treec30efbe46385be0f6a67ee98a75d7f6c09d2b74d /app/views/layouts
parent5ff9457ee3d2f1c636da8d13c47c608543d2e5f7 (diff)
downloadthoughts-4cffc8c90b5e316baf3e49b665dd67ea9e965272.tar.gz
thoughts-4cffc8c90b5e316baf3e49b665dd67ea9e965272.tar.bz2
thoughts-4cffc8c90b5e316baf3e49b665dd67ea9e965272.zip
Worked more on overall layout, made ponies clickable
Diffstat (limited to 'app/views/layouts')
-rw-r--r--app/views/layouts/application.html.haml24
1 files changed, 12 insertions, 12 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index f15945e..ee028b4 100644 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml
@@ -11,17 +11,17 @@
11 - if flash[:notice] 11 - if flash[:notice]
12 %div#flash.flash-notice= flash[:notice] 12 %div#flash.flash-notice= flash[:notice]
13 #container 13 #container
14 %header#banner feffernoo.se
15 #main 14 #main
15 %header#banner= link_to "feffernoo.se", root_url
16 #content= yield 16 #content= yield
17 #sidebar 17 #sidebar
18 .sidebar-module 18 .sidebar-module
19 %h2 I'm Fef. 19 %h2 I'm Fef.
20 %p I'm a computer science undergrad at Carnegie Mellon University. I make a lot of things, including Twitter bots. I really like Pokémon, and I write about it a lot. 20 %p I'm a computer science undergrad at Carnegie Mellon University. I make a lot of things, including Twitter bots. I really like Pokémon, and I write about it a lot.
21 .sidebar-module 21 .sidebar-module
22 %h2 Meta 22 %h2 Meta
23 %ul 23 %ul
24 - if not user_signed_in? 24 - if not user_signed_in?
25 %li= link_to "Log in", new_user_session_path 25 %li= link_to "Log in", new_user_session_path
26 - if user_signed_in? 26 - if user_signed_in?
27 %li= link_to "Log out", destroy_user_session_path, method: :delete 27 %li= link_to "Log out", destroy_user_session_path, method: :delete