mirror of
				https://github.com/TeamPiped/Piped.git
				synced 2024-08-14 23:57:27 +00:00 
			
		
		
		
	Restyle feed page (#410)
This commit is contained in:
		
							parent
							
								
									c97a0ef6c6
								
							
						
					
					
						commit
						7211cad369
					
				
					 2 changed files with 37 additions and 15 deletions
				
			
		| 
						 | 
				
			
			@ -1,23 +1,31 @@
 | 
			
		|||
<template>
 | 
			
		||||
    <h1 class="uk-text-bold uk-text-center" v-t="'titles.feed'" />
 | 
			
		||||
 | 
			
		||||
    <small>You can import subscriptions from <router-link to="/import">here</router-link>.</small>
 | 
			
		||||
    <button
 | 
			
		||||
        v-if="authenticated"
 | 
			
		||||
        @click="exportHandler"
 | 
			
		||||
        class="uk-button uk-button-small"
 | 
			
		||||
        style="background: #222; margin-right: 0.5rem"
 | 
			
		||||
        type="button"
 | 
			
		||||
    >
 | 
			
		||||
        <router-link to="/subscriptions">
 | 
			
		||||
            Subscriptions
 | 
			
		||||
        </router-link>
 | 
			
		||||
    </button>
 | 
			
		||||
 | 
			
		||||
    <br />
 | 
			
		||||
    <router-link to="/subscriptions" class="uk-text-center" v-t="'actions.view_subscriptions'" />
 | 
			
		||||
 | 
			
		||||
    <br />
 | 
			
		||||
    {{ $t("actions.sort_by") }}
 | 
			
		||||
    <select class="uk-select uk-width-auto" v-model="selectedSort" @change="onChange()">
 | 
			
		||||
        <option value="descending" v-t="'actions.most_recent'" />
 | 
			
		||||
        <option value="ascending" v-t="'actions.least_recent'" />
 | 
			
		||||
        <option value="channel_ascending" v-t="'actions.channel_name_asc'" />
 | 
			
		||||
        <option value="channel_descending" v-t="'actions.channel_name_desc'" />
 | 
			
		||||
    </select>
 | 
			
		||||
 | 
			
		||||
    <div class="uk-align-right">
 | 
			
		||||
    <span>
 | 
			
		||||
        <a :href="getRssUrl"><font-awesome-icon icon="rss"></font-awesome-icon></a>
 | 
			
		||||
    </div>
 | 
			
		||||
    </span>
 | 
			
		||||
 | 
			
		||||
    <span class="uk-align-right">
 | 
			
		||||
        {{ $t("actions.sort_by") }}
 | 
			
		||||
        <select class="uk-select uk-width-auto" v-model="selectedSort" @change="onChange()">
 | 
			
		||||
            <option value="descending" v-t="'actions.most_recent'" />
 | 
			
		||||
            <option value="ascending" v-t="'actions.least_recent'" />
 | 
			
		||||
            <option value="channel_ascending" v-t="'actions.channel_name_asc'" />
 | 
			
		||||
            <option value="channel_descending" v-t="'actions.channel_name_desc'" />
 | 
			
		||||
        </select>
 | 
			
		||||
    </span>
 | 
			
		||||
 | 
			
		||||
    <hr />
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,20 @@
 | 
			
		|||
<template>
 | 
			
		||||
    <h1 class="uk-text-bold uk-text-center">Subscriptions</h1>
 | 
			
		||||
 | 
			
		||||
    <button
 | 
			
		||||
        v-if="authenticated"
 | 
			
		||||
        @click="exportHandler"
 | 
			
		||||
        class="uk-button uk-button-small"
 | 
			
		||||
        style="background: #222"
 | 
			
		||||
        type="button"
 | 
			
		||||
    >
 | 
			
		||||
        <router-link to="/import">
 | 
			
		||||
        Import from JSON
 | 
			
		||||
        </router-link>
 | 
			
		||||
    </button>
 | 
			
		||||
 | 
			
		||||
    <br />
 | 
			
		||||
 | 
			
		||||
    <button
 | 
			
		||||
        v-if="authenticated"
 | 
			
		||||
        @click="exportHandler"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue