mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Details at the [ZEPPELIN-279](https://issues.apache.org/jira/browse/ZEPPELIN-279) Author: Alexander Bezzubov <bzz@apache.org> Closes #282 from bzz/ZEPPELIN-279-move-docs-to-master and squashes the following commits:16d2cd0[Alexander Bezzubov] ZEPPELIN-279: updating refs to new /docs locationa051a35[Alexander Bezzubov] ZEPPELIN-279: moving website gh-pages -> master:/docs
22 lines
No EOL
733 B
Text
22 lines
No EOL
733 B
Text
{% capture jbcache %}
|
|
<!--
|
|
- Dynamically set liquid variables for working with URLs/paths
|
|
-->
|
|
{% if site.JB.setup.provider == "custom" %}
|
|
{% include custom/setup %}
|
|
{% else %}
|
|
{% if site.safe and site.JB.BASE_PATH and site.JB.BASE_PATH != '' %}
|
|
{% assign BASE_PATH = site.JB.BASE_PATH %}
|
|
{% assign HOME_PATH = site.JB.BASE_PATH %}
|
|
{% else %}
|
|
{% assign BASE_PATH = nil %}
|
|
{% assign HOME_PATH = "/" %}
|
|
{% endif %}
|
|
|
|
{% if site.JB.ASSET_PATH %}
|
|
{% assign ASSET_PATH = site.JB.ASSET_PATH %}
|
|
{% else %}
|
|
{% capture ASSET_PATH %}{{ BASE_PATH }}/assets/themes/{{ page.theme.name }}{% endcapture %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endcapture %}{% assign jbcache = nil %} |