jekyll-stealthy-share/lib/jekyll/stealthy_share/asset_tag.rb

10 lines
185 B
Ruby

module Jekyll
module StealthyShare
class AssetTag < Liquid::Tag
def render(context)
%Q{<link rel="stylesheet" href="/assets/share.css">}
end
end
end
end