forked from linnovate/mean
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
a3a0c2b
commit 6deea6a
Showing
86 changed files
with
6,774 additions
and
4 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
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
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 @@ | ||
README: meanStarter |
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,22 @@ | ||
'use strict'; | ||
|
||
/* | ||
* Defining the Package | ||
*/ | ||
var Module = require('meanio').Module; | ||
|
||
var MeanStarter = new Module('meanStarter'); | ||
|
||
/* | ||
* All MEAN packages require registration | ||
* Dependency injection is used to define required modules | ||
*/ | ||
MeanStarter.register(function(app, users, system) { | ||
|
||
// Set views path, template engine and default layout | ||
app.set('views', __dirname + '/server/views'); | ||
|
||
MeanStarter.angularDependencies(['mean.system', 'mean.users']); | ||
|
||
return MeanStarter; | ||
}); |
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,11 @@ | ||
{ | ||
"name": "meanStarter", | ||
"version": "0.1.0", | ||
"mean": "0.6.0", | ||
"dependencies": { | ||
"system": "latest", | ||
"users": "latest", | ||
"circles": "latest", | ||
"admin": "latest" | ||
} | ||
} |
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,16 @@ | ||
{ | ||
"name": "meanStarter", | ||
"version": "0.0.1", | ||
"description": "A starter layout / theme package for MEAN", | ||
"author": { | ||
"name": "MEAN.io" | ||
}, | ||
"mean": "0.6.0", | ||
"dependencies": { | ||
"meanio-system": "git://github.com/pashist/meanio-system.git", | ||
"meanio-users": "git://github.com/pashist/meanio-users.git", | ||
"meanio-circles": "git://github.com/pashist/meanio-circles.git", | ||
"meanio-admin": "git://github.com/pashist/meanio-admin.git" | ||
}, | ||
"license": "MIT" | ||
} |
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,47 @@ | ||
.page-header { | ||
padding-bottom: 0 !important; | ||
margin: 0 !important; | ||
border-bottom: 0 !important; | ||
} | ||
.page-header .navbar-nav { | ||
float: right; | ||
} | ||
.page-header > div > div, .page-header > div > ul { | ||
display: inline-block; | ||
} | ||
.text-edit { | ||
float: right; | ||
margin-top: 12px; | ||
} | ||
.account { | ||
text-align:right; | ||
} | ||
.account > div, .account > ul { | ||
text-align: left; | ||
} | ||
.navbar .nav > li > a.brand { | ||
padding-left: 20px; | ||
margin-left: 0 | ||
} | ||
.content { | ||
margin-top: 70px; | ||
width: 100% | ||
} | ||
footer { | ||
position: fixed; | ||
left: 0; | ||
bottom: 0; | ||
height: 30px; | ||
width: 100%; | ||
background: #ddd; | ||
-webkit-box-shadow: 0 8px 6px 6px black; | ||
-moz-box-shadow: 0 8px 6px 6px black; | ||
box-shadow: 0 8px 6px 6px black | ||
} | ||
footer p { | ||
padding: 5px 0 12px 10px | ||
} | ||
|
||
.featuredpic img{ | ||
width:510px; | ||
} |
Oops, something went wrong.