2018-12-21 14:19:31 -08:00
|
|
|
{% extends "_base.html" %}
|
2017-08-20 13:01:58 -07:00
|
|
|
|
2018-12-21 14:19:31 -08:00
|
|
|
{% block body %}
|
2017-10-23 16:13:16 -07:00
|
|
|
<div class="background-image" id="app">
|
2017-08-20 13:01:58 -07:00
|
|
|
<div class="title">
|
|
|
|
<h1>Podsync</h1>
|
|
|
|
|
|
|
|
<h2>
|
|
|
|
Simple and free service that lets you listen to any YouTube or
|
|
|
|
Vimeo channels, playlists or user videos in podcast format.
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div class="login-block">
|
2017-11-10 13:42:44 -08:00
|
|
|
<div class="login-border">
|
|
|
|
|
|
|
|
<template v-if="!userId">
|
2017-10-23 16:13:16 -07:00
|
|
|
<a href="/login">
|
2017-11-10 13:42:44 -08:00
|
|
|
<i class="fa fa-unlock" aria-hidden="true"></i>
|
2017-10-23 16:13:16 -07:00
|
|
|
Login with Patreon to unlock features
|
|
|
|
</a>
|
2017-11-10 13:42:44 -08:00
|
|
|
<a href="https://www.patreon.com/bePatron?c=278915">
|
|
|
|
<i class="fa fa-question-circle-o" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
</template>
|
|
|
|
<template v-else>
|
2018-12-11 20:41:20 -08:00
|
|
|
<a>Hey, <i class="fa fa-user-o" aria-hidden="true"></i> {{ fullName }}</a>
|
2017-11-10 13:42:44 -08:00
|
|
|
<a href="/logout"><i class="fa fa-power-off" aria-hidden="true"></i></a>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</div>
|
2017-08-20 13:01:58 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-10-23 16:13:16 -07:00
|
|
|
<div class="main" v-if="!showModal" v-cloak>
|
2017-08-20 13:01:58 -07:00
|
|
|
<div class="main-border shadow">
|
|
|
|
<div class="input-border">
|
2017-10-23 16:13:16 -07:00
|
|
|
<input v-model="link"
|
|
|
|
@keyup.enter="submit"
|
|
|
|
type="text"
|
|
|
|
placeholder="paste your link here"
|
|
|
|
spellcheck="false"
|
|
|
|
autofocus />
|
|
|
|
|
2017-08-20 13:01:58 -07:00
|
|
|
<div class="arrow-button">
|
2017-10-23 16:13:16 -07:00
|
|
|
<a href="#" id="get-link" @click="submit">
|
2017-08-20 13:01:58 -07:00
|
|
|
<i class="fa fa-arrow-right" aria-hidden="true"></i>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="controls">
|
2017-10-22 23:25:14 -07:00
|
|
|
<div class="controls-icon">
|
2017-10-23 16:13:16 -07:00
|
|
|
<template v-if="locked">
|
2017-11-10 13:42:44 -08:00
|
|
|
<a href="https://www.patreon.com/bePatron?c=278915" class="black">
|
2018-12-21 14:19:31 -08:00
|
|
|
<i class="fa fa-question-circle master-tooltip"
|
|
|
|
aria-hidden="true"
|
|
|
|
title="This features are available for patrons only. You may support us and unlock this features"></i>
|
2017-11-10 13:42:44 -08:00
|
|
|
</a>
|
2017-10-23 16:13:16 -07:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
|
|
|
<i class="fa fa-wrench" aria-hidden="true"></i>
|
|
|
|
</template>
|
2017-10-22 23:25:14 -07:00
|
|
|
</div>
|
|
|
|
|
2017-10-23 16:13:16 -07:00
|
|
|
<div :class="{ locked: locked }">
|
2017-10-22 23:25:14 -07:00
|
|
|
|
|
|
|
<div class="switch-field">
|
|
|
|
<div class="switch-title">format </div>
|
2017-10-23 16:13:16 -07:00
|
|
|
<input type="radio" id="type_video" value="video" name="episode_format" v-model="format" :disabled="locked" />
|
2017-10-22 23:25:14 -07:00
|
|
|
<label for="type_video">video</label>
|
2017-10-23 16:13:16 -07:00
|
|
|
<input type="radio" id="type_audio" value="audio" name="episode_format" v-model="format" :disabled="locked" />
|
2017-10-22 23:25:14 -07:00
|
|
|
<label for="type_audio">audio</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="switch-field">
|
|
|
|
<div class="switch-title">quality </div>
|
2017-10-23 16:13:16 -07:00
|
|
|
<input type="radio" id="quality_low" value="low" name="episode_quality" v-model="quality" :disabled="locked" />
|
2017-10-22 23:25:14 -07:00
|
|
|
<label for="quality_low">low</label>
|
2017-10-23 16:13:16 -07:00
|
|
|
<input type="radio" id="quality_high" value="high" name="episode_quality" v-model="quality" :disabled="locked" />
|
2017-10-22 23:25:14 -07:00
|
|
|
<label for="quality_high">high</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="switch-field">
|
|
|
|
<div class="switch-title">episode count </div>
|
2017-10-23 16:13:16 -07:00
|
|
|
<input type="radio" id="page_50" value="50" name="page_count" v-model.number="count" :disabled="locked" />
|
2017-10-22 23:25:14 -07:00
|
|
|
<label for="page_50">50</label>
|
2017-10-23 16:13:16 -07:00
|
|
|
<input type="radio" id="page_100" value="100" name="page_count" v-model.number="count" :disabled="locked" />
|
2017-10-22 23:25:14 -07:00
|
|
|
<label for="page_100">100</label>
|
2017-10-23 16:13:16 -07:00
|
|
|
<input type="radio" id="page_150" value="150" name="page_count" v-model.number="count" :disabled="locked" />
|
2017-10-22 23:25:14 -07:00
|
|
|
<label for="page_150">150</label>
|
2017-11-10 17:13:01 -08:00
|
|
|
<input type="radio" id="page_600" value="600" name="page_count" v-model.number="count" :disabled="locked || !allow600pages" />
|
2017-11-10 17:59:49 -08:00
|
|
|
<label for="page_600" :class="{ locked: !locked && !allow600pages }">600</label>
|
2017-10-22 23:25:14 -07:00
|
|
|
</div>
|
2017-08-20 13:01:58 -07:00
|
|
|
|
2017-10-22 23:25:14 -07:00
|
|
|
</div>
|
2017-08-20 13:01:58 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="man"></div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<a href="https://www.patreon.com/podsync" target="_blank">
|
2017-10-22 23:25:14 -07:00
|
|
|
<img class="patreon shadow" width="400" src="assets/img/become_patreon.png"
|
|
|
|
alt="Become my patron on Patreon"/>
|
2017-08-20 13:01:58 -07:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
2017-10-23 16:13:16 -07:00
|
|
|
<!-- Modal dialog -->
|
|
|
|
<div v-cloak v-if="showModal" class="modal">
|
|
|
|
<input type="url" v-model="feedLink" ref="output" readonly />
|
2017-08-20 13:01:58 -07:00
|
|
|
<div class="modal-links">
|
2017-10-23 16:13:16 -07:00
|
|
|
<span v-if="canCopy">
|
|
|
|
<a id="modal-copy" href="#" @click="copyLink">
|
|
|
|
<i class="fa fa-clone" aria-hidden="true"></i>
|
|
|
|
Copy
|
|
|
|
</a>
|
|
|
|
</span>
|
2017-08-20 13:01:58 -07:00
|
|
|
|
|
|
|
<span>
|
2017-10-23 16:13:16 -07:00
|
|
|
<a id="modal-open" :href="feedLink" target="_blank">
|
|
|
|
<i class="fa fa-external-link" aria-hidden="true"></i>
|
|
|
|
Open
|
|
|
|
</a>
|
|
|
|
</span>
|
2017-08-20 13:01:58 -07:00
|
|
|
|
|
|
|
<span>
|
2017-10-23 16:13:16 -07:00
|
|
|
<a id="close-modal" href="#" @click="showModal=false">
|
|
|
|
<i class="fa fa-thumbs-up" aria-hidden="true"></i>
|
|
|
|
Close
|
|
|
|
</a>
|
|
|
|
</span>
|
2017-08-20 13:01:58 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="footer">
|
|
|
|
<div class="twitter-link">
|
|
|
|
<a href="https://twitter.com/pod_sync"><i class="fa fa-twitter" aria-hidden="true"></i></a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-21 14:19:31 -08:00
|
|
|
{% endblock %}
|