summaryrefslogtreecommitdiff
path: root/ebay-template
blob: 83feebacb6606d7500164aa8498eec9522e0523b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env ruby

require 'haml'

template = '
%div(style="margin:2em;border:0;background:#ffffcc;font-family:Georgia")
  %div(style="margin:1em")
    %h1(style="border-bottom:2px solid #fff")
      Name
    %p(style="margin-left:5%")
      Beschreibung
    %div(style="margin-left:10%;align:center")
      %h2 Bilder:
    - picCount.times do |i|
      %img(style="border:1px solid black;margin:20px;" src="https://simianer.de/ebay/#{picName}#{i+1}t.jpg")
      %br
    %div(style="clear:left")
    %br
    %br
    %p
      Bitte beachten Sie auch meine <a href="https://shop.ebay.de/merchant/iuas81" target="_blank">anderen Artikel</a>!<br />Ersteigern Sie mehrere Artikel, so zahlen Sie nur 1x Versandkosten.
    %h3(style="margin-bottom:0px")
      Viel Spa&szlig; beim Bieten! :-)'


if __FILE__ == $0
  picName = ARGV[0]
  picCount = ARGV[1]

  haml_engine = Haml::Engine.new(template)
  puts haml_engine.render(
    Object.new,
    locals={:picName => picName, :picCount => picCount.to_i}
  )
end