47 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
    <meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1"/>
 | 
						|
    <title>YT Manager</title>
 | 
						|
 | 
						|
    <!-- Compressed CSS -->
 | 
						|
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.3/css/foundation.min.css" />
 | 
						|
    <link rel="stylesheet" type="text/css" href="index.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
    <h1>Dumb YT Manager</h1>
 | 
						|
    <p>Youtube banned my account and refuses to say why, taking all my subscribed channels with it. This is a simple scrubscribed channel manager, showing recent releases from each channel and finally proper sub-catagory functionality!</p>
 | 
						|
 | 
						|
    <hr />
 | 
						|
    <h2>Most Recent Videos</h2>
 | 
						|
    <div v-cloak id="vidholder-0">
 | 
						|
        <div class="grid-x grid-margin-x imgrow" v-for="row in Videos.Rows">
 | 
						|
            <div class="card medium-2 large-1 cell" v-for="video in row.Columns">
 | 
						|
                <div class="card-divider">
 | 
						|
                    <h6>{{video.title}}</h6>
 | 
						|
                </div>
 | 
						|
                <img :src="video.thumbnailURL">
 | 
						|
                <div class="card-section">
 | 
						|
                    <p class="tinytext14px">{{video.description}}</p>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    <!-- Compressed JavaScript -->
 | 
						|
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
 | 
						|
    <script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.3/js/foundation.min.js"></script>
 | 
						|
 | 
						|
    <!-- For doing REST based API stuff. -->
 | 
						|
    <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
 | 
						|
 | 
						|
    <!-- Some icons -->
 | 
						|
    <script src="https://use.fontawesome.com/91af8ab4ba.js"></script> 
 | 
						|
 | 
						|
    <!-- Good ole Vue :D -->
 | 
						|
    <script src="https://unpkg.com/vue"></script>
 | 
						|
 | 
						|
    <!-- All of my custom JS. Put here so body loads before Vue based stuff loads/attempts to bind. -->
 | 
						|
    <script src="index.js"></script>
 | 
						|
</body>
 | 
						|
</html> |