mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
29 lines
825 B
Ruby
29 lines
825 B
Ruby
module RailsGuides
|
|
module Helpers
|
|
def guide(name, url, options = {}, &block)
|
|
link = content_tag(:a, :href => url) { name }
|
|
result = content_tag(:dt, link)
|
|
|
|
if options[:work_in_progress]
|
|
result << content_tag(:dd, 'Work in progress', :class => 'work-in-progress')
|
|
end
|
|
|
|
result << content_tag(:dd, capture(&block))
|
|
result
|
|
end
|
|
|
|
def author(name, nick, image = 'credits_pic_blank.gif', &block)
|
|
image = "images/#{image}"
|
|
|
|
result = content_tag(:img, nil, :src => image, :class => 'left pic', :alt => name)
|
|
result << content_tag(:h3, name)
|
|
result << content_tag(:p, capture(&block))
|
|
content_tag(:div, result, :class => 'clearfix', :id => nick)
|
|
end
|
|
|
|
def code(&block)
|
|
c = capture(&block)
|
|
content_tag(:code, c)
|
|
end
|
|
end
|
|
end
|