2022-05-05 18:13:06 -05:00
|
|
|
|
<template>
|
2022-12-24 11:04:20 -06:00
|
|
|
|
<div id="podcast-structure" class="not-prose">
|
|
|
|
|
<p class="mb-4 text-sm md:text-base">Here is an example supported directory structure for Podcasts</p>
|
2022-05-05 18:13:06 -05:00
|
|
|
|
|
|
|
|
|
<div class="p-4 border border-opacity-10 bg-primary bg-opacity-20 font-mono">
|
|
|
|
|
<div class="flex py-1 max-w-2xl">
|
|
|
|
|
<img src="/folder.svg" class="h-6" />
|
|
|
|
|
<p class="pl-2">Lex Fridman Podcast</p>
|
|
|
|
|
<div class="hidden md:block flex-grow" />
|
|
|
|
|
<span class="hidden md:block text-white text-opacity-50 pl-4"><-- Title </span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex py-1 max-w-2xl">
|
|
|
|
|
<span class="text-white text-opacity-25"> - </span>
|
|
|
|
|
<span class="material-icons">audiotrack</span>
|
|
|
|
|
<p class="pl-2">#219 – Donald Knuth.mp3</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex py-1 max-w-2xl">
|
|
|
|
|
<span class="text-white text-opacity-25"> - </span>
|
|
|
|
|
<span class="material-icons">audiotrack</span>
|
|
|
|
|
<p class="pl-2">#252 – Elon Musk.mp3</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex py-1 max-w-2xl">
|
|
|
|
|
<span class="text-white text-opacity-25"> - </span>
|
|
|
|
|
<span class="material-icons">crop_original</span>
|
|
|
|
|
<p class="pl-2">Cover.jpg</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex py-1 max-w-2xl">
|
|
|
|
|
<img src="/folder.svg" class="h-6" />
|
|
|
|
|
<p class="pl-2">Self-Hosted</p>
|
|
|
|
|
<div class="hidden md:block flex-grow" />
|
|
|
|
|
<span class="hidden md:block text-white text-opacity-50 pl-4"><-- Title </span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex py-1 max-w-2xl">
|
|
|
|
|
<span class="text-white text-opacity-25"> - </span>
|
|
|
|
|
<span class="material-icons">audiotrack</span>
|
|
|
|
|
<p class="pl-2">#69 - Get Off My Lawn.mp3</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {}
|
|
|
|
|
},
|
|
|
|
|
computed: {},
|
|
|
|
|
methods: {},
|
|
|
|
|
mounted() {}
|
|
|
|
|
}
|
2022-12-24 12:25:32 -06:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
p {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
img {
|
|
|
|
|
margin: 0px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|