Last active
December 26, 2015 02:19
-
-
Save xn/7078127 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def render_stack(blockitem, size) | |
size = nil if size < 2 | |
html = "" | |
link = localized.include?(blockitem) ? "" : "something" | |
html << "<a href=\"#{link}\" class=\"stack-link\">" # Not done, still need to change that for things | |
html << "<div class=\"recipe-icon\" style=\"background: url(#{url('images/wiki/#{blockitem}.png')});\" title=\"{$name}\">#{size}</div>" | |
html << "</a>" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment