Class: Rpub::Epub::Cover

Inherits:
XmlFile show all
Defined in:
lib/rpub/epub/cover.rb

Instance Attribute Summary

Attributes inherited from XmlFile

#book, #xml

Instance Method Summary (collapse)

Methods inherited from XmlFile

#initialize, #to_s

Constructor Details

This class inherits a constructor from Rpub::XmlFile

Instance Method Details

- (Object) render



4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/rpub/epub/cover.rb', line 4

def render
  xml.declare! :DOCTYPE, :html, :PUBLIC, '-//W3C//DTD XHTML 1.0 Strict//EN', 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'
  xml.html :xmlns => 'http://www.w3.org/1999/xhtml' do
    xml.head do
      xml.title 'Cover'
      xml.style 'img { max-width: 100%; }', :type => 'text/css'
    end
    xml.body do
      xml.div :id => 'cover-image' do
        xml.img :src => book.config.cover_image, :alt => book.config.title
      end
    end
  end
end