Files
talk/views/admin/docs.ejs
T
2018-01-05 11:10:32 -07:00

37 lines
921 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Talk: GraphQL Docs</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<style media="screen">
body, #root {
width: 100%;
height: 100%;
margin: 0;
background-color: #FAFAFA;
font-family: 'Roboto', sans-serif;
}
.wrapper {
margin: 0 auto;
max-width: 800px;
}
a {
border-bottom: 2px dotted #f67150;
color: #333 !important;
text-decoration: none;
font-weight: bold;
}
</style>
<%_ if (locals.customCssUrl) { _%>
<link href="<%= customCssUrl %>" rel="stylesheet" type="text/css">
<%_ } _%>
</head>
<body class="docs-page">
<div id="root"></div>
<script src="<%= STATIC_URL %>static/coral-docs/bundle.js" charset="utf-8"></script>
</body>
</html>