Files
talk/views/admin/docs.ejs
T
2018-02-16 14:38:57 -07:00

34 lines
806 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<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>
<%- include ../partials/head %>
</head>
<body class="docs-page">
<div id="root"></div>
<script src="<%= STATIC_URL %>static/coral-docs/bundle.js" charset="utf-8"></script>
</body>
</html>