github.com/machinebox/remoto@v0.1.2-0.20191024144331-eff21a7d321f/console/www/templates/_layout.plush.html (about)

     1  <!doctype html>
     2  <html lang='en'>
     3  <head>
     4  	<meta charset='utf-8'>
     5  	<meta http-equiv='X-UA-Compatible' content='IE=edge'>
     6  	<%= contentOf("head") %>
     7  	<meta name="description" content="The simplest RPC ecosystem built for right now">
     8  	<meta name="image" content="https://remotoproject.com/static/remoto-banner-by-chris-ryer.png">
     9  	<meta itemprop="description" content="The simplest RPC ecosystem built for right now">
    10  	<meta itemprop="image" content="https://remotoproject.com/static/remoto-banner-by-chris-ryer.png">
    11  	<meta name="twitter:card" content="summary">
    12  	<meta name="twitter:description" content="The simplest RPC ecosystem built for right now">
    13  	<meta name="twitter:site" content="@matryer">
    14  	<meta name="twitter:creator" content="@matryer">
    15  	<meta name="twitter:image:src" content="https://remotoproject.com/static/remoto-banner-by-chris-ryer.png">
    16  	<meta name="og:description" content="The simplest RPC ecosystem built for right now">
    17  	<meta name="og:image" content="https://remotoproject.com/static/remoto-banner-by-chris-ryer.png">
    18  	<meta name="og:url" content="https://remotoproject.com/">
    19  	<meta name="og:site_name" content="Remoto">
    20  	<meta name="og:locale" content="en">
    21  	<meta name="og:type" content="website">
    22  	<meta name='viewport' content='width=device-width, initial-scale=1'>
    23  	<link rel='stylesheet' href='/static/styles.css'>
    24  	<style>
    25  		header {
    26  			background: rgb(224,158,197);
    27  			background: linear-gradient(85deg, rgba(224,158,197,1) 0%, rgba(174,134,247,1) 100%);
    28  		}
    29  		header .hero {
    30  			min-height: 300px;
    31  			background: transparent url("/static/img/remoto-4@3x.svg") 0% 100% no-repeat;
    32  			background-size: contain;
    33  		}
    34  		footer {
    35  			padding: 10px;
    36  			padding-top: 20px;
    37  			text-align: right;
    38  			padding: 50px;
    39  			font-size: 0.8em;
    40  		}
    41  	</style>
    42  </head>
    43  <body>
    44  	<header>
    45  		<div class='hero'></div>
    46  	</header>
    47  	<nav class='navbar navbar-light bg-light'>
    48  		<div class='container'>
    49  			<a class="navbar-brand" href="/">Remoto</a>
    50  			<%= contentOf("navbar") %>
    51  		</div>
    52  	</nav>
    53  	<div class='fluid-container'>
    54  		<%= contentOf("body") %>
    55  	</div>
    56  	<footer>
    57  		<div class='container'>
    58  			<a href='https://github.com/machinebox/remoto'>Remoto ❤︎ open source</a>
    59  		</div>
    60  	</footer>
    61  	<%= contentOf("scripts") %>
    62  </body>
    63  </html>