Merge pull request #3989 from tomjohnson1492/patch-1
Merge pull request 3989
This commit is contained in:
commit
1bb8f9cf81
|
@ -201,6 +201,15 @@ class="flag">flags</code> (specified on the command-line) that control them.
|
||||||
<p><code class="flag">--drafts</code></p>
|
<p><code class="flag">--drafts</code></p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr class="setting">
|
||||||
|
<td>
|
||||||
|
<p class="name"><strong>Environment</strong></p>
|
||||||
|
<p class="description">Use a specific environment value in the build.</p>
|
||||||
|
</td>
|
||||||
|
<td class="align-center">
|
||||||
|
<p><code class="flag">JEKYLL_ENV=production</code></p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr class="setting">
|
<tr class="setting">
|
||||||
<td>
|
<td>
|
||||||
<p class="name"><strong>Future</strong></p>
|
<p class="name"><strong>Future</strong></p>
|
||||||
|
@ -263,6 +272,7 @@ class="flag">flags</code> (specified on the command-line) that control them.
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
### Serve Command Options
|
### Serve Command Options
|
||||||
|
|
||||||
In addition to the options below, the `serve` sub-command can accept any of the options
|
In addition to the options below, the `serve` sub-command can accept any of the options
|
||||||
|
@ -339,6 +349,34 @@ before your site is served.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
## Specifying a Jekyll environment at build time
|
||||||
|
|
||||||
|
In the build (or serve) arguments, you can specify a Jekyll environment and value. The build will then apply this value in any conditional statements in your content.
|
||||||
|
|
||||||
|
For example, suppose you set this conditional statement in your code:
|
||||||
|
|
||||||
|
```liquid
|
||||||
|
{% raw %}
|
||||||
|
{% if jekyll.environment == "production" %}
|
||||||
|
{% include disqus.html %}
|
||||||
|
{% endif %}
|
||||||
|
{% endraw %}
|
||||||
|
```
|
||||||
|
|
||||||
|
When you build your Jekyll site, the content inside the `if` statement won't be run unless you also specify a `production` environment in the build command, like this:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
JEKYLL_ENV=production jekyll build
|
||||||
|
```
|
||||||
|
|
||||||
|
Specifying an environment value allows you to make certain content available only within specific environments.
|
||||||
|
|
||||||
|
The default value for `JEKYLL_ENV` is `development`. Therefore if you omit `JEKYLL_ENV` from the build arguments, the default value will be `JEKYLL_ENV=development`. Any content inside `{% raw %}{% if jekyll.environment == "development" %}{% raw %}` tags will automatically appear in the build.
|
||||||
|
|
||||||
|
Your environment values can be anything you want (not just `development` or `production`). Some elements you might want to hide in development environments include Disqus comment forms or Google Analytics. Conversely, you might want to expose an "Edit me in GitHub" button in a development environment but not include it in production environments.
|
||||||
|
|
||||||
|
By specifying the option in the build command, you avoid having to change values in your configuration files when moving from one environment to another.
|
||||||
|
|
||||||
## Front Matter defaults
|
## Front Matter defaults
|
||||||
|
|
||||||
Using [YAML Front Matter](../frontmatter/) is one way that you can specify configuration in the pages and posts for your site. Setting things like a default layout, or customizing the title, or specifying a more precise date/time for the post can all be added to your page or post front matter.
|
Using [YAML Front Matter](../frontmatter/) is one way that you can specify configuration in the pages and posts for your site. Setting things like a default layout, or customizing the title, or specifying a more precise date/time for the post can all be added to your page or post front matter.
|
||||||
|
|
Loading…
Reference in New Issue