class Object

Constants

IMAGE_EXTS

Public Instance Methods

get_album_artwork_dest_path() click to toggle source
# File _plugins/albums.rb, line 17
def get_album_artwork_dest_path()
    # Relative to album dest path
    return "artwork"
end
get_album_source_path(album_name) click to toggle source
# File _plugins/albums.rb, line 3
def get_album_source_path(album_name)
    # Relative to Jekyll’s data dir
    return File.join("albums", album_name)
end
get_album_static_dest_path(album_name) click to toggle source
# File _plugins/albums.rb, line 12
def get_album_static_dest_path(album_name)
    # Relative to Jekyll’s assets dir
    return File.join("albums", album_name)
end
get_album_symbol_filename() click to toggle source
# File _plugins/albums.rb, line 8
def get_album_symbol_filename()
    return "symbol.png"
end