name: "West Side" panel_display_name: "West Side" panels { name: "ERASE" path: "Panels/General/entry_9" clue: "erase" answer: "write" symbols: SUN } panels { name: "TEACH" path: "Panels/Magnet Room/magnet_1" clue: "teach" answer: "learn" symbols: SUN } panels { name: "RIGHT" path: "Panels/Impressive/entry_1" clue: "right" answer: "wrong" symbols: SUN } panels { name: "SAVORY" path: "Panels/Favors/favors_1" clue: "savory" answer: "unsavory" symbols: SUN } panels { name: "FLAVORS" path: "Panels/Favors/favors_2" clue: "flavors" answer: "favors" symbols: SPARKLES } panels { name: "COLOR" path: "Panels/General/entry_5" clue: "color" answer: "red" symbols: EXAMPLE } panels { name: "CLUE" path: "Panels/General/entry_3" clue: "clue" answer: "hint" symbols: SUN } letters { key: "a" path: "Components/Collectables/a" } paintings { name: "EXTRAVAGANT" path: "Components/Paintings/unless" orientation: "north" move: true enter_only: true required_door { name: "Savory Painting" } } ports { name: "IMPRESSIVE" path: "Meshes/Blocks/Warps/worldport2" orientation: "south" } ports { name: "CC" path: "Meshes/Blocks/Warps/worldport9" orientation: "north" } ports { name: "PARTIAL" path: "Meshes/Blocks/Warps/worldport7" orientation: "east" # ER with this is weird; make sure to place on the surface required_door { name: "Partial Entrance" } } g
about summary refs log blame commit diff stats
path: root/app/views/layouts/application.html.haml
blob: 5148df46f01001d8f1d3f7f5f6aa658d2a3d85c9 (plain) (tree)
1
2
3
4
5
6
7




                    
                                                                                    
                                                                             




                                             
              









                                                                                                                                                                                
                                             
                                                                                


                                                        
!!! 5
%html
  %head
    %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 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.
        .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