mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 17:19:36 +08:00
37 lines
921 B
Plaintext
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>
|