forked from cybrespace/pinafore
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			No EOL
		
	
	
		
			969 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			No EOL
		
	
	
		
			969 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <FreeTextLayout>
 | |
|   <div class="banner">
 | |
|     <svg aria-hidden="true" class="logo">
 | |
|       <use xlink:href="#pinafore-logo" />
 | |
|     </svg>
 | |
|     <h1>Pinafore</h1>
 | |
|   </div>
 | |
|   <p>Pinafore is a web client for <a href="https://joinmastodon.org">Mastodon</a>, optimized for speed and simplicity.</p>
 | |
| 
 | |
|   <p>To get started, <a href="/settings/add-instance">log in to an instance</a>.</p>
 | |
| 
 | |
|   <p>Don't have an instance? <a href="https://joinmastodon.org">Join Mastodon!</a></p>
 | |
| </FreeTextLayout>
 | |
| <style>
 | |
|   .banner {
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|   }
 | |
|   svg {
 | |
|     width: 70px;
 | |
|     height: 70px;
 | |
|     fill: royalblue;
 | |
|     display: inline-block;
 | |
|   }
 | |
|   h1 {
 | |
|     color: royalblue;
 | |
|     display: inline-block;
 | |
|     font-size: 3em;
 | |
|     margin: auto 15px;
 | |
|   }
 | |
| 
 | |
|   @media (max-width: 767px) {
 | |
|     h1 {
 | |
|       font-size: 2.7em;
 | |
|     }
 | |
|   }
 | |
| </style>
 | |
| <script>
 | |
|   import FreeTextLayout from './FreeTextLayout.html'
 | |
|   export default {
 | |
|     components: {
 | |
|       FreeTextLayout
 | |
|     }
 | |
|   }
 | |
| </script> |