summaryrefslogtreecommitdiff
path: root/ebay-template
diff options
context:
space:
mode:
authorPatrick Simianer <p@simianer.de>2014-10-09 20:44:15 +0100
committerPatrick Simianer <p@simianer.de>2014-10-09 20:44:15 +0100
commitca41eddfdc979955105cce572e659941544d6f6d (patch)
treebf446902e8323e58c6fc14dce808b9719da7d3f6 /ebay-template
parent0aae427eb3838297f6e204c2961739ef834762cf (diff)
alles neu macht der mai
Diffstat (limited to 'ebay-template')
-rwxr-xr-xebay-template36
1 files changed, 0 insertions, 36 deletions
diff --git a/ebay-template b/ebay-template
deleted file mode 100755
index 65c6b8f..0000000
--- a/ebay-template
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/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%")
- %h2 Bilder:
- - picCount.times do |i|
- %a(href="http://simianer.de/ebay/#{picName}#{i+1}.jpg" target="_blank")
- %img(style="border:2px solid blue;float:left;margin:20px;" src="http://simianer.de/ebay/#{picName}#{i+1}t.jpg")
- %div(style="clear:left")
- %br
- %br
- %p
- Bitte beachten Sie auch meine <a href="http://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
-