This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #images/_form.haml | |
| .field | |
| = f.label :title | |
| %br/ | |
| = f.text_field :title | |
| .field | |
| = f.label :gallery_id | |
| %br/ | |
| %select |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .field | |
| = f.label :title | |
| %br/ | |
| = f.text_field :title | |
| .field | |
| = f.label :gallery_id | |
| %br/ | |
| = f.select(:gallery_id, @gallery.name) | |
| = debug @gallery | |
| .field |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #menu { | |
| float: left; | |
| ul { | |
| list-style: none; | |
| ul { | |
| display: none; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* line 1, C:/Users/Daniel/teaterfred/app/assets/stylesheets/main.css.scss */ | |
| body { | |
| font-family: Arial, Helvetica, sans-serif; | |
| } | |
| /* line 5, C:/Users/Daniel/teaterfred/app/assets/stylesheets/main.css.scss */ | |
| .container { | |
| margin: auto; | |
| width: 1024px; | |
| height: 768px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #menu { | |
| float: left; | |
| ul { | |
| list-style-type: none; | |
| } | |
| li:hover { | |
| ul.submenu { | |
| display: block; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %ul | |
| %li= link_to 'Om os' | |
| %ul.submenu | |
| %li= link_to 'Bestyrelsen' | |
| %li= link_to 'Vedtægter' | |
| %li= link_to 'Samarbejdspartnere' | |
| %li= link_to 'Billetter' | |
| %ul.submenu | |
| %li= link_to 'Bliv medlem', '/become_member' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp " "> ]> | |
| <xsl:stylesheet | |
| version="1.0" | |
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
| xmlns:msxml="urn:schemas-microsoft-com:xslt" | |
| xmlns:umbraco.library="urn:umbraco.library" | |
| exclude-result-prefixes="msxml umbraco.library"> | |
| <xsl:output method="xml" omit-xml-declaration="yes"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dg@EWDKLY035 /c/Users/dg/advicecapital (master) | |
| $ heroku run rake db:reset | |
| Running rake db:reset attached to terminal... up, run.1 | |
| c:/Ruby192/lib/ruby/gems/1.9.1/gems/heroku-2.3.6/lib/heroku/client/rendezvous.rb | |
| :40:in `read_nonblock': Bad file descriptor - <STDIN> (Errno::EBADF) | |
| from c:/Ruby192/lib/ruby/gems/1.9.1/gems/heroku-2.3.6/lib/heroku/client/ | |
| rendezvous.rb:40:in `block in connect' | |
| from c:/Ruby192/lib/ruby/gems/1.9.1/gems/heroku-2.3.6/lib/heroku/client/ | |
| rendezvous.rb:37:in `loop' | |
| from c:/Ruby192/lib/ruby/gems/1.9.1/gems/heroku-2.3.6/lib/heroku/client/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a { | |
| color: #000 !important; | |
| text-decoration: none !important; | |
| background: none !important; | |
| } | |
| .menu a, .menu a:visited, .menu a:active { | |
| color: #000 !important; | |
| text-decoration: none !important; | |
| } | |
| .menu a:hover { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### side_content view partial | |
| #calendar | |
| %h2#month | |
| = #debug get_date | |
| = link_to "<", :month => (date.beginning_of_month-1).strftime("%Y-%m") | |
| =h date.strftime("%B %Y") | |
| = link_to ">", :month => (date.beginning_of_month+1).strftime("%Y-%m") | |
| = debug Event.all | |
| = debug @events |