You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			617 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			617 B
		
	
	
	
		
			HTML
		
	
| <! Doctype HTML>
 | |
| <head>
 | |
| <link rel="stylesheet" type="text/css" href="/css/app.css">
 | |
| </head>
 | |
| <body>
 | |
| 	<div id='app'>
 | |
| 		<div class='search-wrapper'>
 | |
| 			<input type="text" v-model='keyword' placeholder="Search by title..." />
 | |
| 			<label>Search Title</label>
 | |
| 		</div>
 | |
| 		<div class='wrapper' >
 | |
| 			<div class='card' v-for='post in filteredList'>
 | |
| 				<a v-bind:href='post.link' target='_blank'>
 | |
| 					<img v-bind:src="post.logo" alt=""/>
 | |
| 					{{post.title}}</a>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| <script type="text/javascript" src="js/vue.js"></script>
 | |
| <script type="text/javascript" src="js/dist/main.bundle.js"></script>
 | |
| </body>
 | |
| 
 | |
| 
 | |
| 
 |