Sha256: ed6aed9b56ae8795ceea88254b94d112cc814ebad0279b43ddf0371bc17cd143
Contents?: true
Size: 789 Bytes
Versions: 44
Compression:
Stored size: 789 Bytes
Contents
module Jekyll class PodcastPlayerPage < Page def initialize(site, base, dir, post) @site = site @base = base @dir = dir @name = 'index.html' self.process(@name) self.read_yaml(File.join(base, '_layouts'), 'player_index.html') self.data['title'] = post.data['title'] self.data['subtitle'] = post.data['subtitle'] self.data['datum'] = post.data['datum'] self.data['author'] = post.data['author'] self.data['duration'] = post.data['duration'] self.data['summary'] = post.data['summary'] self.data['explicit'] = post.data['explicit'] self.data['audio'] = post.data['audio'] self.data['chapters'] = post.data['chapters'] self.data['template'] = 'player_index' end end end
Version data entries
44 entries across 44 versions & 2 rubygems