Make resources fetched via resources.Get and similar language agnostic
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 31 Jul 2018 18:04:36 +0000 (20:04 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 31 Jul 2018 21:33:04 +0000 (23:33 +0200)
commit6b02f5c0f4e0ba1730aebc5a590a111548233bd5
tree13eda738080f73db33040eeb2b7103c552434a29
parent88e447c449608523d87c517396bde31a62f392b6
Make resources fetched via resources.Get and similar language agnostic

With the newly released Hugo Pipes, resources fetched and processed via `resources.Get` and similar was published to the relevant language sub folder when in multilingual mode.

The thought behind that was maximum flexibility with support for `assetDir` per language.

In practice this was a bad idea:

* You get duplication of identical content, with added processing time
* You end up with path issues that seem to be hard to find a way around (`@fa-font-path` is one example)

This commit changes that. Now there is only one `assetDir` and if you, as one example, need to generate a CSS per langugage, you need to set the paths yourself.

Fixes #5017
deps/deps.go
langs/language.go
resource/resource.go