Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(theme): sync docs with themes #509

Merged
merged 4 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions enterprise/themes/camunda/layouts/_default/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{{/* This template is overridden to emit permalinks that (1) are absolute, and (2) specify the most recent version. This allows us to submit the sitemap to crawlers with true canonical URLs. */}}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
{{ range .Data.Pages }}
<url>
{{- $permalink := .Permalink }}
{{- if ($.Site.Params.section.versions) }}
{{- $latestVersion := (index $.Site.Params.section.versions 1) }}
{{- $replacementPattern := print "${1}" $latestVersion "/${3}" }}
{{- $permalink = $permalink | replaceRE `(\/manual\/)([^\/]*\/)(.*)` $replacementPattern }}
{{- end }}
<loc>{{ $.Site.Params.canonicalBasePath }}{{ $permalink }}</loc>{{ if not .Lastmod.IsZero }}
<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}{{ if .IsTranslated }}{{ range .Translations }}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ $.Site.Params.canonicalBasePath }}{{ .Permalink }}"
/>{{ end }}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ $.Site.Params.canonicalBasePath }}{{ .Permalink }}"
/>{{ end }}
</url>
{{ end }}
</urlset>
2 changes: 1 addition & 1 deletion enterprise/themes/camunda/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</p>

<p>
<a href="http://camunda.org">camunda.org</a> and <a href="{{ .Site.BaseURL }}">docs.camunda.org</a> are part of Camunda Platform
<a href="http://camunda.org">camunda.org</a> and <a href="{{ .Site.BaseURL }}">docs.camunda.org</a> are both part of Camunda
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

File was out of sync, changes in themes repo are newer

Changes from docs-static are three years old:
d55f2f2

Changed in themes 2024.03.05:

camunda/camunda-docs-theme@c0b25b7

<span class="splitter">|</span>
Built by <a href="http://www.camunda.com">camunda</a> and contributors &mdash; <a href="https://camunda.com/legal/privacy/">Privacy Statement</a> &mdash; camunda Services GmbH &copy; {{ now.Format "2006"}}
</p>
Expand Down
15 changes: 4 additions & 11 deletions enterprise/themes/camunda/layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
'https://ssgtm.camunda.org/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Intended changes

})(window,document,'script','dataLayer','GTM-PP9MHKW');</script>
<!-- End Google Tag Manager -->

Expand All @@ -17,9 +17,9 @@

<meta name="viewport" content="width=device-width" />

<meta name="description" content="documentation of the Camunda Platform 7" />
<meta name="description" content="documentation of Camunda 7" />
<meta name="keywords" content="camunda, open source, free, Apache License, Apache 2.0, workflow, BPMN, BPMN 2.0, camunda.org, bpm, BPMS, engine, platform, process, automation, community, documentation" />
<meta name="author" content="Camunda Platform 7 community" />
<meta name="author" content="Camunda 7 community" />
{{ if ($.Site.Params.section.versions)}}
{{ if (not (eq (index $.Site.Params.section.versions 1) $.Site.Params.section.version))}}
<meta name="robots" content="noindex" />
Expand All @@ -34,13 +34,6 @@
{{ $styles := resources.Get "css/docs.css" | fingerprint }}

<link rel="stylesheet" href="{{ $styles.Permalink }}" integrity="{{ $styles.Data.Integrity }}">
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{{- $permalink := .Permalink }}
{{- if ($.Site.Params.section.versions) }}
{{- $latestVersion := (index $.Site.Params.section.versions 1) }}
{{- $replacementPattern := print "${1}" $latestVersion "/${3}" }}
{{- $permalink = $permalink | replaceRE `(\/manual\/)([^\/]*\/)(.*)` $replacementPattern }}
{{- end }}
<link rel="canonical" href="{{ $.Site.Params.canonicalBasePath }}{{ $permalink }}" />
</head>
<body class="{{ .Params.bodyclass }}">

Expand All @@ -51,7 +44,7 @@

<nav class="navbar navbar-fixed-top">
<div class="navbar-container navbar-top-section">
<span>Looking for Camunda Platform 8? >></span>
<span>Looking for Camunda 8? >></span>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(also line 20 & 22)
File was out of sync, changes in themes repo are newer

Changes from docs-static are from Mar 4, 2022:
c7e4d7f

Changed in themes are from Mar 5, 2022:

camunda/camunda-docs-theme@c0b25b7

<a target="_blank" href="https://docs.camunda.io/">Docs</a>
<a target="_blank" href="https://signup.camunda.com/accounts?utm_source=docs.camunda.org&utm_medium=referral">Create account</a>
<a target="_blank" href="https://console.cloud.camunda.io/">Sign-In</a>
Expand Down
4 changes: 2 additions & 2 deletions enterprise/themes/camunda/layouts/shortcodes/ee-download.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ <h3></h3>
Released on <span class="date"></span>, <a class="notes">release notes</a>.
</p>
<p>
Camunda Platform 7 Enterprise Edition provides Enterprise components under a license agreement containing restrictions on use and disclosure and that are protected by intellectual property laws (<a class="licenses-link">view licenses</a>). Third-party libraries or application servers included are distributed under their respective licenses (<a class="third-party-licenses-link">view third-party notices</a>).
Camunda 7 Enterprise Edition provides Enterprise components under a license agreement containing restrictions on use and disclosure and that are protected by intellectual property laws (<a class="licenses-link">view licenses</a>). Third-party libraries or application servers included are distributed under their respective licenses (<a class="third-party-licenses-link">view third-party notices</a>).
</p>
</div>

<div class="full">
<h4>Full Distribution</h4>

<a class="details full" href="/manual/latest/installation/full">What is the Full Distribution?</a>
<a class="details run" href="/manual/latest/installation/camunda-bpm-run">How to install Camunda Platform Run?</a>
<a class="details run" href="/manual/latest/installation/camunda-bpm-run">How to install Camunda 7 Run?</a>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


<div class="links">
<a class="tar-gz btn btn-primary">.tar.gz</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ <h3>Enterprise Feature</h3>
<p>
Check the <a href="http://camunda.com/platform-7/editions/">Camunda enterprise homepage</a>
for more information or get your
<a href="http://camunda.com/download/enterprise/">free trial version.</a>
<a href="https://camunda.com/download/enterprise/">free trial version.</a>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

</p>
</div>
2 changes: 1 addition & 1 deletion get-started/themes/camunda/assets/css/docs.css

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions get-started/themes/camunda/assets/js/docs.js

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions get-started/themes/camunda/layouts/_default/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{{/* This template is overridden to emit permalinks that (1) are absolute, and (2) specify the most recent version. This allows us to submit the sitemap to crawlers with true canonical URLs. */}}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
{{ range .Data.Pages }}
<url>
{{- $permalink := .Permalink }}
{{- if ($.Site.Params.section.versions) }}
{{- $latestVersion := (index $.Site.Params.section.versions 1) }}
{{- $replacementPattern := print "${1}" $latestVersion "/${3}" }}
{{- $permalink = $permalink | replaceRE `(\/manual\/)([^\/]*\/)(.*)` $replacementPattern }}
{{- end }}
<loc>{{ $.Site.Params.canonicalBasePath }}{{ $permalink }}</loc>{{ if not .Lastmod.IsZero }}
<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}{{ if .IsTranslated }}{{ range .Translations }}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ $.Site.Params.canonicalBasePath }}{{ .Permalink }}"
/>{{ end }}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ $.Site.Params.canonicalBasePath }}{{ .Permalink }}"
/>{{ end }}
</url>
{{ end }}
</urlset>
2 changes: 1 addition & 1 deletion get-started/themes/camunda/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</p>

<p>
<a href="http://camunda.org">camunda.org</a> and <a href="{{ .Site.BaseURL }}">docs.camunda.org</a> are part of Camunda Platform
<a href="http://camunda.org">camunda.org</a> and <a href="{{ .Site.BaseURL }}">docs.camunda.org</a> are both part of Camunda
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<span class="splitter">|</span>
Built by <a href="http://www.camunda.com">camunda</a> and contributors &mdash; <a href="https://camunda.com/legal/privacy/">Privacy Statement</a> &mdash; camunda Services GmbH &copy; {{ now.Format "2006"}}
</p>
Expand Down
12 changes: 6 additions & 6 deletions get-started/themes/camunda/layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
'https://ssgtm.camunda.org/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Intended change

})(window,document,'script','dataLayer','GTM-PP9MHKW');</script>
<!-- End Google Tag Manager -->

Expand All @@ -17,9 +17,9 @@

<meta name="viewport" content="width=device-width" />

<meta name="description" content="documentation of the Camunda Platform 7" />
<meta name="description" content="documentation of Camunda 7" />
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was out of sync with themes

<meta name="keywords" content="camunda, open source, free, Apache License, Apache 2.0, workflow, BPMN, BPMN 2.0, camunda.org, bpm, BPMS, engine, platform, process, automation, community, documentation" />
<meta name="author" content="Camunda Platform 7 community" />
<meta name="author" content="Camunda 7 community" />
{{ if ($.Site.Params.section.versions)}}
{{ if (not (eq (index $.Site.Params.section.versions 1) $.Site.Params.section.version))}}
<meta name="robots" content="noindex" />
Expand All @@ -44,7 +44,7 @@

<nav class="navbar navbar-fixed-top">
<div class="navbar-container navbar-top-section">
<span>Looking for Camunda Platform 8? >></span>
<span>Looking for Camunda 8? >></span>
<a target="_blank" href="https://docs.camunda.io/">Docs</a>
<a target="_blank" href="https://signup.camunda.com/accounts?utm_source=docs.camunda.org&utm_medium=referral">Create account</a>
<a target="_blank" href="https://console.cloud.camunda.io/">Sign-In</a>
Expand Down Expand Up @@ -100,9 +100,9 @@

<div class="search-underlay"></div>

<div class="site-menu">
<nav class="site-menu">
{{ partialCached "menu.html" . }}
</div>
</nav>


<div class="page-wrapper">
13 changes: 10 additions & 3 deletions get-started/themes/camunda/layouts/shortcodes/ee-download.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

camDownloads.servers = {};
{{ range $info := sort $.Page.Params.downloads.servers "weight" }}
camDownloads.servers['{{ $info.path }}'] = '{{ $info.name }}';{{ end }}
camDownloads.servers['{{ $info.id }}'] = {name:'{{ $info.name }}',path:'{{ $info.path }}'};{{ end }}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


camDownloads.formats = [];
{{ range $.Page.Params.downloads.formats }}
Expand All @@ -45,14 +45,19 @@
<div class="selected-server">
<div class="info">
<h3></h3>
<p>
Released on <span class="date"></span>, <a class="notes">release notes</a>.
</p>
<p>
Camunda 7 Enterprise Edition provides Enterprise components under a license agreement containing restrictions on use and disclosure and that are protected by intellectual property laws (<a class="licenses-link">view licenses</a>). Third-party libraries or application servers included are distributed under their respective licenses (<a class="third-party-licenses-link">view third-party notices</a>).
</p>
</div>

<div class="full">
<h4>Full Distribution</h4>

<a class="details full" href="/manual/latest/installation/full">What is the Full Distribution?</a>
<a class="details run" href="/manual/latest/installation/camunda-bpm-run">How to install Camunda Platform Run?</a>
<a class="details run" href="/manual/latest/installation/camunda-bpm-run">How to install Camunda 7 Run?</a>

<div class="links">
<a class="tar-gz btn btn-primary">.tar.gz</a>
Expand All @@ -62,7 +67,9 @@ <h4>Full Distribution</h4>
</div>

<div class="standalone">
<h4>Standalone Web Application</h4>
<h4></h4>

<p class="hint"></p>

<a class="details" href="/manual/latest/installation/standalone-webapplication">What is the Standalone Webapplication Distribution?</a>

Expand Down
4 changes: 2 additions & 2 deletions get-started/themes/camunda/layouts/shortcodes/enterprise.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ <h3>Enterprise Feature</h3>
<p class="description">{{ trim .Inner "" | markdownify }}</p>

<p>
Check the <a href="http://camunda.com/bpm/enterprise/">Camunda enterprise homepage</a>
Check the <a href="http://camunda.com/platform-7/editions/">Camunda enterprise homepage</a>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was out of sync with themes

for more information or get your
<a href="http://camunda.com/bpm/enterprise/trial/">free trial version.</a>
<a href="https://camunda.com/download/enterprise/">free trial version.</a>
</p>
</div>
2 changes: 1 addition & 1 deletion security/themes/camunda/assets/css/docs.css

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions security/themes/camunda/assets/js/docs.js

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions security/themes/camunda/layouts/_default/sitemap.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{{/* This template is overridden to emit permalinks that (1) are absolute, and (2) specify the most recent version. This allows us to submit the sitemap to crawlers with true canonical URLs. */}}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
{{ range .Data.Pages }}
<url>
{{- $permalink := .Permalink }}
{{- if ($.Site.Params.section.versions) }}
{{- $latestVersion := (index $.Site.Params.section.versions 1) }}
{{- $replacementPattern := print "${1}" $latestVersion "/${3}" }}
{{- $permalink = $permalink | replaceRE `(\/manual\/)([^\/]*\/)(.*)` $replacementPattern }}
{{- end }}
<loc>{{ $.Site.Params.canonicalBasePath }}{{ $permalink }}</loc>{{ if not .Lastmod.IsZero }}
<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}{{ if .IsTranslated }}{{ range .Translations }}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ $.Site.Params.canonicalBasePath }}{{ .Permalink }}"
/>{{ end }}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ $.Site.Params.canonicalBasePath }}{{ .Permalink }}"
/>{{ end }}
</url>
{{ end }}
</urlset>
2 changes: 1 addition & 1 deletion security/themes/camunda/layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</p>

<p>
<a href="http://camunda.org">camunda.org</a> and <a href="{{ .Site.BaseURL }}">docs.camunda.org</a> are part of Camunda Platform
<a href="http://camunda.org">camunda.org</a> and <a href="{{ .Site.BaseURL }}">docs.camunda.org</a> are both part of Camunda
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<span class="splitter">|</span>
Built by <a href="http://www.camunda.com">camunda</a> and contributors &mdash; <a href="https://camunda.com/legal/privacy/">Privacy Statement</a> &mdash; camunda Services GmbH &copy; {{ now.Format "2006"}}
</p>
Expand Down
12 changes: 6 additions & 6 deletions security/themes/camunda/layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
'https://ssgtm.camunda.org/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Intended changes

})(window,document,'script','dataLayer','GTM-PP9MHKW');</script>
<!-- End Google Tag Manager -->

Expand All @@ -17,9 +17,9 @@

<meta name="viewport" content="width=device-width" />

<meta name="description" content="documentation of the Camunda Platform 7" />
<meta name="description" content="documentation of Camunda 7" />
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

was out of sync with themes

<meta name="keywords" content="camunda, open source, free, Apache License, Apache 2.0, workflow, BPMN, BPMN 2.0, camunda.org, bpm, BPMS, engine, platform, process, automation, community, documentation" />
<meta name="author" content="Camunda Platform 7 community" />
<meta name="author" content="Camunda 7 community" />
{{ if ($.Site.Params.section.versions)}}
{{ if (not (eq (index $.Site.Params.section.versions 1) $.Site.Params.section.version))}}
<meta name="robots" content="noindex" />
Expand All @@ -44,7 +44,7 @@

<nav class="navbar navbar-fixed-top">
<div class="navbar-container navbar-top-section">
<span>Looking for Camunda Platform 8? >></span>
<span>Looking for Camunda 8? >></span>
<a target="_blank" href="https://docs.camunda.io/">Docs</a>
<a target="_blank" href="https://signup.camunda.com/accounts?utm_source=docs.camunda.org&utm_medium=referral">Create account</a>
<a target="_blank" href="https://console.cloud.camunda.io/">Sign-In</a>
Expand Down Expand Up @@ -100,9 +100,9 @@

<div class="search-underlay"></div>

<div class="site-menu">
<nav class="site-menu">
{{ partialCached "menu.html" . }}
</div>
</nav>


<div class="page-wrapper">
13 changes: 10 additions & 3 deletions security/themes/camunda/layouts/shortcodes/ee-download.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

camDownloads.servers = {};
{{ range $info := sort $.Page.Params.downloads.servers "weight" }}
camDownloads.servers['{{ $info.path }}'] = '{{ $info.name }}';{{ end }}
camDownloads.servers['{{ $info.id }}'] = {name:'{{ $info.name }}',path:'{{ $info.path }}'};{{ end }}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes were not synced from themes.
Commit: camunda/camunda-docs-theme@48e728b


camDownloads.formats = [];
{{ range $.Page.Params.downloads.formats }}
Expand All @@ -45,14 +45,19 @@
<div class="selected-server">
<div class="info">
<h3></h3>
<p>
Released on <span class="date"></span>, <a class="notes">release notes</a>.
</p>
<p>
Camunda 7 Enterprise Edition provides Enterprise components under a license agreement containing restrictions on use and disclosure and that are protected by intellectual property laws (<a class="licenses-link">view licenses</a>). Third-party libraries or application servers included are distributed under their respective licenses (<a class="third-party-licenses-link">view third-party notices</a>).
</p>
</div>

<div class="full">
<h4>Full Distribution</h4>

<a class="details full" href="/manual/latest/installation/full">What is the Full Distribution?</a>
<a class="details run" href="/manual/latest/installation/camunda-bpm-run">How to install Camunda Platform Run?</a>
<a class="details run" href="/manual/latest/installation/camunda-bpm-run">How to install Camunda 7 Run?</a>

<div class="links">
<a class="tar-gz btn btn-primary">.tar.gz</a>
Expand All @@ -62,7 +67,9 @@ <h4>Full Distribution</h4>
</div>

<div class="standalone">
<h4>Standalone Web Application</h4>
<h4></h4>

<p class="hint"></p>

<a class="details" href="/manual/latest/installation/standalone-webapplication">What is the Standalone Webapplication Distribution?</a>

Expand Down
4 changes: 2 additions & 2 deletions security/themes/camunda/layouts/shortcodes/enterprise.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ <h3>Enterprise Feature</h3>
<p class="description">{{ trim .Inner "" | markdownify }}</p>

<p>
Check the <a href="http://camunda.com/bpm/enterprise/">Camunda enterprise homepage</a>
Check the <a href="http://camunda.com/platform-7/editions/">Camunda enterprise homepage</a>
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was out of sync with themes

for more information or get your
<a href="http://camunda.com/bpm/enterprise/trial/">free trial version.</a>
<a href="https://camunda.com/download/enterprise/">free trial version.</a>
</p>
</div>