Do some cleanup

This commit is contained in:
MattIPv4
2020-05-08 20:57:36 +01:00
parent c5b2459e9d
commit 4bd34dab39
3 changed files with 11 additions and 20 deletions

View File

@@ -63,9 +63,9 @@ limitations under the License.
<div :class="`column ${splitColumn ? 'is-half' : 'is-full'} is-full-mobile is-full-tablet`">
<h2>Config files</h2>
<template v-for="(conf, name) in confFiles">
<h3>{{ nginxDir }}/{{ name }}</h3>
<Prism language="nginx" :code="conf"></Prism>
<template v-for="(conf, i) in confFiles">
<h3>{{ nginxDir }}/{{ conf[0] }}</h3>
<Prism :key="`${conf[0]}${i}`" language="nginx" :code="conf[1]"></Prism>
</template>
</div>
</div>