!!! 5
%html
  %head
    %title= content_for?(:title) ? "Thoughts - #{yield(:title)}" : "Thoughts"
    = csrf_meta_tags
    = stylesheet_link_tag    'main', media: 'all', 'data-turbolinks-track': 'reload'
    = javascript_include_tag 'application', 'data-turbolinks-track': 'reload'
  %body#main-body
    - if flash[:alert]
      %div#flash.flash-alert= flash[:alert]
    - if flash[:notice]
      %div#flash.flash-notice= flash[:notice]
    #container
      #sidebar
        .sidebar-module
          %h2 I'm Fef.
          %p Coding is what I do. I make a lot of things, including Twitter bots. I really like Pokémon, and I write about it a lot.
          %p B.S. in CS, Carnegie Mellon 2017
        .sidebar-module
          %h2 Meta
          %ul
            - if not user_signed_in?
              %li= link_to "Log in", new_user_session_path
            - if user_signed_in?
              %li= link_to "Admin", admin_url
              %li= link_to "Log out", destroy_user_session_path, method: :delete
      #main
        %header#banner= link_to "feffernoo.se", root_url
        #content= yield