D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.1.0
/
gems
/
erubis-2.7.0
/
examples
/
pi
/
Filename :
example.eruby
back
Copy
<?rb user = 'Erubis' list = ['<aaa>', 'b&b', '"ccc"'] ?> <p>Hello @{user}@!</p> <table> <tbody> <?rb list.each_with_index do |item, i| ?> <tr bgcolor="@!{i % 2 == 0 ? '#FFCCCC' : '#CCCCFF'}@"> <td>@!{i + 1}@</td> <td>@{item}@</td> </tr> <?rb end ?> </tbody> </table>