Skip to content
This repository was archived by the owner on Dec 30, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .bowerrc
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"directory": "client/src/vendor",
"json": "bower.json"
"directory": "client/src/vendor"
}
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ root = true

# Change these settings to your own preference
indent_style = space
indent_size = 2
indent_size = 4

# We recommend you to keep these unchanged
end_of_line = lf
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,14 @@ A code coverage report will be available inside the `client/test/unit-results`.
* **gulp test:e2e** - Run end-to-end tests inside the `client/test/e2e` folder with `protractor`. If a test fails, you should find a screenshot of the page inside the `client/test/screenshots` folder.
**Note that you need to have the application running in order to run e2e tests. You can launch this task from another terminal instance.**

### What is Included

* **AngularJS V.1.6.9** - Most updated version of AngularJS (Angular 1).
* **Angular-Materialize** - Angular directives for MaterializeCSS Framework.
* **Angular-ui-router** - Awesome Angular module for route management.
* **MaterializeCSS** - A modern responsive front-end framework based on Material Design.
* **Font Awesome V.5** - Awesome icon pack.

### Contributing

PR and issues reporting are always welcome :)
Expand Down
24 changes: 19 additions & 5 deletions bower.json
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
{
"name": "angular-kickstart",
"description": "Speed up your AngularJS development whith a great build system.",
"main": "",
"authors": [
"Alessandro Arnodo"
],
"license": "MIT",
"homepage": "http://alessandro.arnodo.net",
"private": true,
"ignore": [
"node_modules",
"bower_components"
],
"dependencies": {
"normalize-css": "~3.0.3",
"angular": "~1.3.0",
"angular-ui-router": "~0.2.14",
"pure": "~0.5.0"
"materialize": "^0.100.2",
"angular": "1.6.9",
"angular-animate": "1.6.9",
"angular-materialize": "^0.2.2",
"font-awesome": "^5.0.10",
"angular-ui-router": "^1.0.18"
},
"devDependencies": {
"angular-mocks": "~1.3.0"
"angular-mocks": "~1.6.9"
}
}
15 changes: 10 additions & 5 deletions client/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,27 @@
<meta name="keywords" content="AngularJS, angular-kickstart, gulp, bower, vesparny" />

<!-- build:css assets/css/main.css -->
<link rel="stylesheet" type="text/css" href="src/vendor/pure/pure.css" />
<link rel="stylesheet" type="text/css" href="src/vendor/pure/grids-responsive.css" />
<link rel="stylesheet" type="text/css" href="src/vendor/angular-materialize/css/style.css" />
<link rel="stylesheet" type="text/css" href="src/vendor/materialize/dist/css/materialize.css" />
<link rel="stylesheet" type="text/css" href="src/vendor/font-awesome/web-fonts-with-css/css/fontawesome-all.css" />

<link rel="stylesheet" type="text/css" href="tmp/main.css" />
<!-- endbuild -->
</head>

<body>
<div>
<header ui-view="header"></header>
<div ui-view class="l-page island"></div>
<footer ui-view="footer"></footer>
<section ui-view="header"></section>
<div ui-view class="row"></div>
<section ui-view="footer"></section>
</div>

<!-- build:js assets/js/vendor.js -->
<script type="text/javascript" src="src/vendor/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="src/vendor/angular/angular.js"></script>
<script type="text/javascript" src="src/vendor/angular-animate/angular-animate.js"></script>
<script type="text/javascript" src="src/vendor/angular-ui-router/release/angular-ui-router.js"></script>
<script type="text/javascript" src="src/vendor/angular-materialize/js/app.js"></script>
<!-- endbuild -->

<!-- build:js assets/js/main.js -->
Expand Down
39 changes: 24 additions & 15 deletions client/src/common/footer.tpl.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
<div class="pure-g">
<div class="pure-u-1 text-center">
<p>&copy; 2014 - <a href="http://alessandro.arnodo.net">Alessandro Arnodo.</a>
<footer class="page-footer indigo darken-4">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Angular Kickstart</h5>
<p class="grey-text text-lighten-4">Speed up your AngularJS development whith a great build system.</p>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Links</h5>
<ul>
<li><a target="_blank" href="http://twitter.com/vesparny">twitter</a></li>
<li><a target="_blank" href="https://plus.google.com/+AlessandroArnodo">g+</li>
<li><a target="_blank" href="http://www.linkedin.com/in/alessandroarnodo">LinkedIn</a></li>
<li><a target="_blank" href="https://github.com/vesparny/angular-kickstart">GitHub</a></li>
</ul>
</div>
</div>
</div>
<div class="pure-u-1 text-center">
<ul class="hlist">
<li><a target="_blank" href="http://twitter.com/vesparny">twitter</a>
</li>
<li><a target="_blank" href="https://plus.google.com/+AlessandroArnodo">g+</a>
</li>
<li><a target="_blank" href="http://www.linkedin.com/in/alessandroarnodo">LinkedIn</a>
</li>
<li><a target="_blank" href="https://github.com/vesparny/angular-kickstart">GitHub</a>
</li>
</ul>
<div class="footer-copyright">
<div class="container">
<div class="row">
&copy; 2014 - <a href="http://alessandro.arnodo.net">Alessandro Arnodo.</a>
</div>
</div>
</div>
</div>
</footer>
18 changes: 9 additions & 9 deletions client/src/common/header.tpl.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class="pure-menu pure-menu-open pure-menu-horizontal">
<a class="pure-menu-heading" href="">angular-kickstart <span app-version></span></a>
<ul>
<li ui-sref-active="pure-menu-selected"><a href ui-sref="root.home">{{ 'home' | uppercase }}</a>
</li>
<li ui-sref-active="pure-menu-selected"><a href ui-sref="root.getting-started">{{ 'getting started' | uppercase }}</a>
</li>
</ul>
</div>
<nav>
<div class="nav-wrapper indigo darken-4">
<a href="#" class="brand-logo">angular-kickstart <span app-version></span></a>
<ul id="nav-mobile" class="right hide-on-med-and-down">
<li><a ui-sref="root.home">{{ 'home' | uppercase }}</a></li>
<li><a ui-sref="root.getting-started">{{ 'getting started' | uppercase }}</a></li>
</ul>
</div>
</nav>
11 changes: 3 additions & 8 deletions client/src/scss/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,10 @@
/* Fonts
========================================================================== */
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400);
html,
button,
input,
select,
textarea,
.pure-g [class *= "pure-u"] {
font-family: 'Open Sans', sans-serif;

a, a:hover, a:focus, a:active {
color: #fff !important;
}

/* Defaults
========================================================================== */

Expand Down
Loading