Created
May 18, 2015 11:01
-
-
Save darui00kara/e665eae78081fe0237ad to your computer and use it in GitHub Desktop.
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
!!! | |
-# %TagName(html)で記述 | |
%html{:lang => "ja"} | |
%head | |
-# 「%TagName= @EmmbeddingName」で出力 | |
%title= @title | |
%body | |
-# 「%TagName #{@EmmbeddingName}で出力」 | |
%h1 #{@title} | |
%p= @text | |
- @bbs_data.each do |row| | |
%p= row | |
- row.each do |element| | |
%p= element | |
%form{:method => "POST", :action => '/request_print'} | |
%input{:type => "hidden", :name => "_method", :value => "PUT"} | |
%input{:type => "text", :name => "name"} | |
%input{:type => "text", :name => "title"} | |
%input{:type => "text", :name => "message"} | |
%input{:type => "submit"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment