Method: Jekyll::Collection#url_template
- Defined in:
- lib/jekyll/collection.rb
#url_template ⇒ Object
The URL template to render collection’s documents at.
Returns the URL template to render collection’s documents at.
194 195 196 197 198 |
# File 'lib/jekyll/collection.rb', line 194 def url_template @url_template ||= .fetch("permalink") do Utils.add_permalink_suffix("/:collection/:path", site.permalink_style) end end |