module Adamantium module Views module Site class Home < Adamantium::View include Deps["repos.post_repo", renderer: "renderers.markdown"] expose :home_content do markdown_content = File.read("app/content/home.md") renderer.call(content: markdown_content) end expose :posts do post_repo.post_listing(limit: 10).map do |post| Decorators::Posts::Decorator.new(post) end end end end end end