Landing page (#353)

* Landing page

* Change legal corp name, remove google from privacy policy, other fixes
This commit is contained in:
Geometrically
2022-02-16 17:39:48 -07:00
committed by GitHub
parent e91b0500c5
commit 51a9a7b75d
22 changed files with 535 additions and 187 deletions

View File

@@ -505,7 +505,7 @@
>
<textarea
id="body"
v-model="versions[currentVersionIndex].changelog"
v-model="versions[currentVersionIndex].version_body"
/>
</div>
<div
@@ -513,8 +513,10 @@
v-highlightjs
class="markdown-body"
v-html="
versions[currentVersionIndex].changelog
? $xss($md.render(versions[currentVersionIndex].changelog))
versions[currentVersionIndex].version_body
? $xss(
$md.render(versions[currentVersionIndex].version_body)
)
: 'No changelog specified.'
"
></div>