mirror of
https://github.com/owncast/owncast.git
synced 2025-01-01 22:27:39 +03:00
27 lines
No EOL
567 B
JavaScript
27 lines
No EOL
567 B
JavaScript
Vue.component('owncast-footer', {
|
|
template: `
|
|
<footer class="flex border-t border-gray-500 border-solid">
|
|
<span>
|
|
<a href="https://github.com/gabek/owncast" target="_blank">About Owncast</a>
|
|
</span>
|
|
</footer>
|
|
`,
|
|
});
|
|
|
|
|
|
Vue.component('stream-tags', {
|
|
props: ['tags'],
|
|
template: `
|
|
<ul
|
|
class="tag-list flex"
|
|
v-if="this.tags.length"
|
|
>
|
|
<li class="tag rounded-sm text-gray-100 bg-gray-700"
|
|
v-for="tag in this.tags"
|
|
v-bind:key="tag"
|
|
>
|
|
{{tag}}
|
|
</li>
|
|
</ul>
|
|
`,
|
|
}); |