New Bitcoin Core subsite

This commit contains a large number of contributions from Saïvann
Carignan.
This commit is contained in:
David A. Harding 2015-09-01 21:21:51 -04:00
parent c4517a951e
commit 706c791e92
No known key found for this signature in database
GPG key ID: 4B29C30FF29EC4B7
85 changed files with 17420 additions and 88 deletions

View file

@ -48,6 +48,10 @@ module Jekyll
dst = locs[lang]['url'][id]
next if dst.nil? or dst == ''
src = file
## For files ending in a slash, such as path/to/dir/, give them
## the index.html file name
dst.gsub!(/\/$/, '/index')
dst = dst+'.html'
site.pages << TranslatePage.new(site, site.source, lang, '_templates', src, lang, dst)
end