more editing

This commit is contained in:
Daniel 2017-04-27 19:43:57 -04:00
parent 7e46745a7e
commit a9aac5bbe7
4 changed files with 16 additions and 13 deletions

2
.cekey
View File

@ -1,2 +0,0 @@
NoEncryption:1


File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Chaotic Backup Portal</title>
<meta name="description" content="Lightweight solution for deploying single page apps with GitHub Pages. Code and concept by Rafael Pedicini.">
<meta name="description" content="Chaotic Backup Portal to Perim">
<style>
html, body, div, span, a, p, ul, li, h1, code, nav {
@ -108,11 +108,9 @@
</head>
<body>
<div id="header" style="background:white;">
<img src="http://i35.servimg.com/u/f35/17/08/39/22/chaoti11.png" alt="Chaotic Backup">
</div>
<div id="root"></div>
<!-- single page app in bundle.js -->
<script src="/portal/build/bundle.js"></script>
<script src="/build/bundle.js"></script>
</body>
</html>

View File

@ -38,6 +38,9 @@ function App({ children, routes }) {
return (
<div style={s.root}>
<div id="header">
<img src="http://i35.servimg.com/u/f35/17/08/39/22/chaoti11.png" alt="Chaotic Backup" />
</div>
<h1 style={s.title}>Single Page Apps for GitHub Pages</h1>
<Interactive
as="a"
@ -49,7 +52,9 @@ function App({ children, routes }) {
{generateMapMenu()}
</nav>
{children}
<div style={s.creditLine}>
{
/*
<div style={s.creditLine}>
<Interactive
as="a"
href="http://www.rafaelpedicini.com"
@ -61,6 +66,8 @@ function App({ children, routes }) {
Code and concept by <span {...s.childLink}>Rafael Pedicini</span>
</Interactive>
</div>
*/
}
</div>
);
}