Skip to content

Commit

Permalink
favicon and title fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanzander committed Nov 17, 2017
2 parents 5c6027d + 54d752e commit 8a4d38c
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 206 deletions.
Binary file added .DS_Store
Binary file not shown.
15 changes: 5 additions & 10 deletions client/main.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
<html>

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ControlCloud</title>
<meta name="description" content="Invoice Management in the Cloud">
<link rel="shortcut icon" type="image/png" href="/favicon.png?v1" sizes="16x16 32x32 64x64">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-precomposed.png">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.min.css">
<meta name="description" content="A description for the application.">
<meta name="viewport" content="initial-scale=1, minimal-ui, maximum-scale=1, minimum-scale=1" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/png" href="/favicon.png" sizes="16x16 32x32 64x64">
<link rel="apple-touch-icon" sizes="120x120" href="/favicon.png">
</head>

<body>
<div id="react-root"></div>
</body>

</html>
4 changes: 2 additions & 2 deletions imports/startup/server/api.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import '../../api/Documents/methods';
import '../../api/Documents/server/publications';
// import '../../api/Documents/methods';
// import '../../api/Documents/server/publications';

import '../../api/Invoices/methods';
import '../../api/Invoices/server/publications';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ import { Meteor } from 'meteor/meteor';
const AuthenticatedNavigation = ({ name, history }) => (
<div>
<Nav>
<LinkContainer to="/documents">
<NavItem eventKey={1} href="/documents">Documents</NavItem>
<LinkContainer to="/invoices">
<NavItem eventKey={1} href="/invoices">Invoices</NavItem>
</LinkContainer>
<LinkContainer to="/recipients">
<NavItem eventKey={1} href="/recipients">Recipients</NavItem>
</LinkContainer>
</Nav>
<Nav pullRight>
Expand Down
16 changes: 0 additions & 16 deletions imports/ui/components/Content/Content.js

This file was deleted.

36 changes: 0 additions & 36 deletions imports/ui/components/Content/Content.scss

This file was deleted.

2 changes: 1 addition & 1 deletion imports/ui/components/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const copyrightYear = () => {
const Footer = () => (
<div className="Footer">
<Grid>
<p className="pull-left">&copy; {copyrightYear()} ControlCloud</p>
<p className="pull-left">&copy; {copyrightYear()} CloudControl, LLC</p>
<ul className="pull-right">
<li><Link to="/terms">Terms<span className="hidden-xs"> of Service</span></Link></li>
<li><Link to="/privacy">Privacy<span className="hidden-xs"> Policy</span></Link></li>
Expand Down
2 changes: 1 addition & 1 deletion imports/ui/components/Navigation/Navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Navigation = props => (
<Navbar>
<Navbar.Header>
<Navbar.Brand>
<Link to="/">Pup</Link>
<Link to="/">CloudControl</Link>
</Navbar.Brand>
<Navbar.Toggle />
</Navbar.Header>
Expand Down
2 changes: 1 addition & 1 deletion imports/ui/components/Public/Public.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Public = ({ loggingIn, authenticated, component, path, exact, ...rest }) =
render={props => (
!authenticated ?
(React.createElement(component, { ...props, ...rest, loggingIn, authenticated })) :
(<Redirect to="/documents" />)
(<Redirect to="/invoices" />)
)}
/>
);
Expand Down
82 changes: 0 additions & 82 deletions imports/ui/pages/Documents/Documents.js

This file was deleted.

3 changes: 0 additions & 3 deletions imports/ui/pages/Documents/Documents.scss

This file was deleted.

33 changes: 0 additions & 33 deletions imports/ui/pages/EditDocument/EditDocument.js

This file was deleted.

16 changes: 0 additions & 16 deletions imports/ui/pages/NewDocument/NewDocument.js

This file was deleted.

1 change: 0 additions & 1 deletion imports/ui/pages/Page/Page.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { Meteor } from 'meteor/meteor';
import { createContainer } from 'meteor/react-meteor-data';
import { ReactiveVar } from 'meteor/reactive-var';
import PageHeader from '../../components/PageHeader/PageHeader';
import Content from '../../components/Content/Content';

import './Page.scss';

Expand Down
2 changes: 1 addition & 1 deletion imports/ui/pages/Privacy/Privacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Privacy = () => (
<div className="Privacy">
<Page
title="Privacy Policy"
subtitle="Last updated May 29th, 2017"
subtitle="Last updated November 16, 2017"
page="privacy"
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion imports/ui/pages/Terms/Terms.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Terms = () => (
<div className="Terms">
<Page
title="Terms of Service"
subtitle="Last updated May 29th, 2017"
subtitle="Last updated November 16, 2017"
page="terms"
/>
</div>
Expand Down
Binary file modified public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8a4d38c

Please sign in to comment.