Created
February 2, 2011 06:04
-
-
Save robheittman/807312 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 expand(parent) | |
parent.posts.each do |child| | |
link = "/collections#{@engine.getPathFor(child)}/rubyfragment.html" | |
$document.write <<-END | |
<div><a href='#{link}'>#{child['name']}<a></div> | |
#{child['description']} | |
<div style='padding-left: 20px'> | |
END | |
expand child | |
$document.write <<-END | |
</div> | |
END | |
end | |
end |
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
<!-- the "src" attribute here must be site-absolute --> | |
<script type="server-parsed/ruby" src="/ruby/nav.rb"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment