This repository has been archived by the owner on Aug 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
252 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
.DS_Store | ||
.nodemonignore | ||
.sass-cache/ | ||
.bower-* | ||
node_modules/ | ||
public/lib | ||
test/coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
extends layouts/default | ||
{% extends 'layouts/default.html' %} | ||
|
||
block main | ||
h1 Oops something went wrong | ||
br | ||
span 404 | ||
|
||
block content | ||
#error-message-box | ||
#error-stack-trace | ||
pre | ||
code!= error | ||
{% block main %} | ||
<h1>Oops something went wrong</h1> | ||
<br> | ||
<span>404</span> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<div id="error-message-box"> | ||
<div id="error-stack-trace"> | ||
<pre> | ||
<code>{{error}}</code> | ||
</pre> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
extends layouts/default | ||
{% extends 'layouts/default.html' %} | ||
|
||
block main | ||
h1 Oops something went wrong | ||
br | ||
span 500 | ||
{% block main %} | ||
<h1>Oops something went wrong</h1> | ||
<br> | ||
<span>500</span> | ||
{% endblock %} | ||
|
||
block content | ||
#error-message-box | ||
#error-stack-trace | ||
pre | ||
code!= error | ||
{% block content %} | ||
<div id="error-message-box"> | ||
<div id="error-stack-trace"> | ||
<pre> | ||
<code>{{error}}</code> | ||
</pre> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!-- Angular JS --> | ||
<script type="text/javascript" src="/lib/angular/angular.min.js"></script> | ||
<script type="text/javascript" src="/lib/angular-cookies/angular-cookies.min.js"></script> | ||
<script type="text/javascript" src="/lib/angular-resource/angular-resource.min.js"></script> | ||
<script type="text/javascript" src="/lib/angular-route/angular-route.js"></script> | ||
|
||
<!-- Angular UI --> | ||
<script type="text/javascript" src="/lib/angular-bootstrap/ui-bootstrap.js"></script> | ||
<script type="text/javascript" src="/lib/angular-bootstrap/ui-bootstrap-tpls.js"></script> | ||
<script type="text/javascript" src="/lib/angular-ui-utils/ui-utils.min.js"></script> | ||
|
||
<!-- Application Init --> | ||
<script type="text/javascript" src="/js/app.js"></script> | ||
<script type="text/javascript" src="/js/config.js"></script> | ||
<script type="text/javascript" src="/js/directives.js"></script> | ||
<script type="text/javascript" src="/js/filters.js"></script> | ||
|
||
<!-- Application Services --> | ||
<script type="text/javascript" src="/js/services/global.js"></script> | ||
<script type="text/javascript" src="/js/services/articles.js"></script> | ||
|
||
<!-- Application Controllers --> | ||
<script type="text/javascript" src="/js/controllers/articles.js"></script> | ||
<script type="text/javascript" src="/js/controllers/index.js"></script> | ||
<script type="text/javascript" src="/js/controllers/header.js"></script> | ||
<script type="text/javascript" src="/js/init.js"></script> | ||
|
||
|
||
{% if (process.env.NODE_ENV == 'development') %} | ||
<!-- Livereload script rendered --> | ||
<script type="text/javascript", src="http://" + req.host + ":35729/livereload.js"></script> | ||
{% endif %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1"> | ||
|
||
<title>{{appName}} - {{title}}</title> | ||
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"> | ||
<meta name="keywords" content="node.js, express, mongoose, mongodb, angularjs, swig"> | ||
<meta name="description" content="MEAN - A Modern Stack: MongoDB, ExpressJS, AngularJS, NodeJS. (BONUS: Passport User Support)."> | ||
|
||
<link href="/img/icons/favicon.ico" rel="shortcut icon" type="image/x-icon"> | ||
|
||
<meta property="fb:app_id" content="APP_ID"> | ||
<meta property="og:title" content="{{appName}} - {{title}}"> | ||
<meta property="og:description" content="MEAN - A Modern Stack: MongoDB, ExpressJS, AngularJS, NodeJS. (BONUS: Passport User Support)."> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:url" content="APP_URL"> | ||
<meta property="og:image" content="APP_LOGO"> | ||
<meta property="og:site_name" content="MEAN - A Modern Stack"> | ||
<meta property="fb:admins" content="APP_ADMIN"> | ||
|
||
<link rel="stylesheet" href="/lib/bootstrap/dist/css/bootstrap.min.css"> | ||
<!-- <link rel="stylesheet" href="/lib/bootstrap/dist/css/bootstrap-responsive.css"> --> | ||
<link rel="stylesheet" href="/css/common.css"> | ||
|
||
<link rel="stylesheet" href="/css/views/articles.css"> | ||
|
||
<!--[if lt IE 9]> | ||
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
</head> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
extends layouts/default | ||
|
||
block content | ||
section(data-ng-view) | ||
script(type="text/javascript"). | ||
window.user = !{user}; | ||
{% extends 'layouts/default.html' %} | ||
{% block content %} | ||
<section data-ng-view /> | ||
<script type="text/javascript"> | ||
window.user = {{user|safe}}; | ||
</script> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!doctype html> | ||
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="https://www.facebook.com/2008/fbml" itemscope="itemscope" itemtype="http://schema.org/Product"> | ||
{% include '../includes/head.html' %} | ||
<body> | ||
<div class="navbar navbar-inverse navbar-fixed-top" data-ng-include="'views/header.html'" data-role="navigation"></div> | ||
<section class="content"> | ||
<section class="container"> | ||
{% block content %}{% endblock %} | ||
</section> | ||
</section> | ||
{% include '../includes/foot.html' %} | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{% extends '../layouts/default.html' %} | ||
|
||
{% block content %} | ||
<div class="row"> | ||
<div class="col-md-offset-1 col-md-5"> | ||
<a href="/auth/facebook"><img src="/img/icons/facebook.png"></a> | ||
<a href="/auth/github"><img src="/img/icons/github.png"></a> | ||
<a href="/auth/twitter"><img src="/img/icons/twitter.png"></a> | ||
<a href="/auth/google"><img src="/img/icons/google.png"></a> | ||
<a href="/auth/linkedin"><img src="/img/icons/linkedin.png"></a> | ||
</div> | ||
<div class="col-md-6"> | ||
{% if message && message.length %} | ||
<div class="fade in alert alert-error"> | ||
<button class="close" data-dismiss="alert">×</button> | ||
<div class="strong"> | ||
{{ message }} | ||
</div> | ||
</div> | ||
{% endif %} | ||
{% block auth %}{% endblock %} | ||
</div> | ||
</div> | ||
{% endblock %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
extends auth | ||
{% extends 'auth.html' %} | ||
|
||
block auth | ||
form.signin.form-horizontal(action="/users/session", method="post") | ||
.form-group | ||
label.col-md-4.control-label(for='email') Email | ||
.col-md-8 | ||
input#email.form-control(type='text', name="email", placeholder='Email') | ||
|
||
.form-group | ||
label.col-md-4.control-label(for='password') Password | ||
.col-md-8 | ||
input#password.form-control(type='password', name="password", placeholder='Password') | ||
|
||
.form-group | ||
.col-md-offset-4.col-md-8 | ||
button.btn.btn-primary(type='submit') Sign in | ||
| ||
| or | ||
a.show-signup(href="/signup") Sign up | ||
{% block auth %} | ||
<form class="signin form-horizontal" action="/users/session" method="post"> | ||
<div class="form-group"> | ||
<label class="col-md-4 control-label" for="email">Email</label> | ||
<div class="col-md-8"> | ||
<input id="email" class="form-control" type="text" name="email" placeholder="Email"> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-md-4 control-label" for="password">Password</label> | ||
<div class="col-md-8"> | ||
<input id="password" class="form-control" type="password" name="password" placeholder="Password"> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="col-md-offset-4 col-md-8"> | ||
<button class="btn btn-primary" type="submit">Sign in</button> | ||
or <a class="show-signup" href="/signup">Sign up</a> | ||
</div> | ||
</div> | ||
</form> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,36 @@ | ||
extends auth | ||
{% extends 'auth.html' %} | ||
|
||
block auth | ||
form.signup.form-horizontal(action="/users", method="post") | ||
.form-group | ||
label.col-md-4.control-label(for='name') Full Name | ||
.col-md-8 | ||
input#name.form-control(type='text', name="name", placeholder='Full name', value=user.name) | ||
|
||
.form-group | ||
label.col-md-4.control-label(for='email') Email | ||
.col-md-8 | ||
input#email.form-control(type='text', name="email", placeholder='Email', value=user.email) | ||
|
||
.form-group | ||
label.col-md-4.control-label(for='username') Username | ||
.col-md-8 | ||
input#username.form-control(type='text', name="username", placeholder='Username', value=user.username) | ||
|
||
.form-group | ||
label.col-md-4.control-label(for='password') Password | ||
.col-md-8 | ||
input#password.form-control(type='password', name="password", placeholder='Password') | ||
|
||
.form-group | ||
.col-md-offset-4.col-md-8 | ||
button.btn.btn-primary(type='submit') Sign up | ||
| ||
| or | ||
a.show-login(href="/signin") login | ||
{% block auth %} | ||
<form class="signin form-horizontal" action="/users" method="post"> | ||
<div class="form-group"> | ||
<label class="col-md-4 control-label" for="name">Full Name</label> | ||
<div class="col-md-8"> | ||
<input id="name" class="form-control" type="text" name="name" placeholder="Full Name" value="{{user.name}}" /> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-md-4 control-label" for="email">Email</label> | ||
<div class="col-md-8"> | ||
<input id="email" class="form-control" type="text" name="email" placeholder="Email" value="{{user.email}}" /> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-md-4 control-label" for="username">Username</label> | ||
<div class="col-md-8"> | ||
<input id="username" class="form-control" type="text" name="username" placeholder="Username" value="{{user.username}}" /> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<label class="col-md-4 control-label" for="password">Password</label> | ||
<div class="col-md-8"> | ||
<input id="password" class="form-control" type="password" name="password" placeholder="Password" /> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<div class="col-md-offset-4 col-md-8"> | ||
<button class="btn btn-primary" type="submit">Sign up</button> | ||
or <a class="show-login" href="/signin">login</a> | ||
</div> | ||
</div> | ||
</form> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.