diff options
Diffstat (limited to 'blog/_plugins')
-rw-r--r-- | blog/_plugins/releases.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/blog/_plugins/releases.rb b/blog/_plugins/releases.rb index b9f71b5..f858007 100644 --- a/blog/_plugins/releases.rb +++ b/blog/_plugins/releases.rb @@ -6,8 +6,8 @@ module Jekyll class ReleaseTag < Liquid::Tag def initialize(tag, text, context) super - @year, thumbnail = text.split('|').map(&:strip) - @title = "Norsk Urskog Metal Sampler, #{@year}" + @year, vol, thumbnail = text.split('|').map(&:strip) + @title = "Norsk Urskog Metal Sampler, Vol #{vol} #{@year}" @thumbnail = Assets::Liquid::Tag.new('img', "#{thumbnail} magick:resize:400x alt:\"#{@title} cover\"", context) end |