2009-02-04 01:44:58 +00:00
|
|
|
module RailsGuides
|
|
|
|
module Helpers
|
|
|
|
def guide(name, url, options = {}, &block)
|
|
|
|
link = content_tag(:a, :href => url) { name }
|
|
|
|
result = content_tag(:dt, link)
|
|
|
|
|
2010-11-19 20:42:18 +00:00
|
|
|
if options[:work_in_progress]
|
|
|
|
result << content_tag(:dd, 'Work in progress', :class => 'work-in-progress')
|
2009-02-04 01:44:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
result << content_tag(:dd, capture(&block))
|
2010-03-30 21:02:05 +00:00
|
|
|
result
|
2009-02-04 01:44:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def author(name, nick, image = 'credits_pic_blank.gif', &block)
|
|
|
|
image = "images/#{image}"
|
|
|
|
|
2011-06-04 12:25:54 +00:00
|
|
|
result = content_tag(:img, nil, :src => image, :class => 'left pic', :alt => name, :width => 91, :height => 91)
|
2009-02-04 01:44:58 +00:00
|
|
|
result << content_tag(:h3, name)
|
|
|
|
result << content_tag(:p, capture(&block))
|
2010-03-30 21:02:05 +00:00
|
|
|
content_tag(:div, result, :class => 'clearfix', :id => nick)
|
2009-02-04 01:44:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def code(&block)
|
|
|
|
c = capture(&block)
|
|
|
|
content_tag(:code, c)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|