updated layout files with cloud name change

pull/107/head
Scott Anderson 2019-03-27 08:24:20 -06:00
parent 7842b5c26d
commit 1c2cf40667
3 changed files with 12 additions and 11 deletions

View File

@ -63,8 +63,8 @@ weight: # Determines sort order in both the nav tree and in article lists.
draft: # If true, will not render page on build
enterprise_all: # If true, specifies the doc as a whole is specific to InfluxDB Enterprise
enterprise_some: # If true, specifies the doc includes some content specific to InfluxDB Enterprise
cloud_all: # If true, specifies the doc as a whole is specific to InfluxCloud
cloud_some: # If true, specifies the doc includes some content specific to InfluxCloud
cloud_all: # If true, specifies the doc as a whole is specific to InfluxDB Cloud
cloud_some: # If true, specifies the doc includes some content specific to InfluxDB Cloud
v2.x/tags: # Tags specific to each version (replace .x" with the appropriate minor version )
```
@ -152,13 +152,13 @@ This is content that references {{< enterprise-name >}}.
The product name is stored in `data/products.yml`
### InfluxCloud Content
Some articles are unique to InfluxCloud or at least contain some information specific to InfluxCloud.
### InfluxDB Cloud Content
Some articles are unique to InfluxDB Cloud or at least contain some information specific to InfluxDB Cloud.
There are frontmatter options and an cloud shortcode that help to properly identify this content.
#### All content is cloud-specific
If all content in an article is cloud-specific, set the menu in the frontmatter to `v2_0_cloud`
(change the version number for the specific version of InfluxCloud).
(change the version number for the specific version of InfluxDB Cloud).
```yaml
menu:
@ -176,7 +176,7 @@ If only some content in the article is cloud-specific, set the `cloud_some` fron
cloud_some: true
```
This will display a message at the top of page indicating some things are unique to InfluxCloud.
This will display a message at the top of page indicating some things are unique to InfluxDB Cloud.
To format cloud-specific content, wrap it in the `{{% cloud %}}` shortcode:
```md
@ -185,7 +185,7 @@ Insert Cloud-specific markdown content here.
{{% /cloud %}}
```
#### InfluxCloud name
#### InfluxDB Cloud name
The name used to refer to InfluxData's cloud offering is subject to change.
To facilitate easy updates in the future, use the `cloud-name` short-code when referencing the cloud product.

View File

@ -8,9 +8,9 @@
{{ partial "article/tags.html" . }}
{{ if in .RelPermalink "/cloud/"}}
{{ partial "article/_cloud-feedback.html"}}
{{ partial "article/_cloud-feedback.html" . }}
{{ else }}
{{ partial "article/_alpha-feedback.html"}}
{{ partial "article/_alpha-feedback.html" . }}
{{ end }}
</article>
</div>

View File

@ -1,7 +1,8 @@
{{ $cloudName := .Site.Data.products.cloud.name }}
<hr/>
<div class="feedback">
<h4>InfluxCloud Bug Reports and Feedback</h4>
<h4>{{ $cloudName }} Bug Reports and Feedback</h4>
<p>
To provide feedback or report a bug, send an email to <a href="mailto:cloudbeta@influxdata.com?subject=InfluxCloud 2.0 Beta Feedback">cloudbeta@influxdata.com</a>.
To provide feedback or report a bug, send an email to <a href="mailto:cloudbeta@influxdata.com?subject={{ $cloudName }} Feedback">cloudbeta@influxdata.com</a>.
</p>
</div>