-
Notifications
You must be signed in to change notification settings - Fork 144
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
18 changed files
with
1,039 additions
and
153 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
Accounts.ui.config({ | ||
passwordSignupFields: 'USERNAME_AND_EMAIL' | ||
}); | ||
|
||
AccountsEntry.config({ | ||
homeRoute: '/', | ||
dashboardRoute : '/' | ||
}); |
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,5 +1,5 @@ | ||
@import 'variables.less'; | ||
|
||
.padding-wrapper { | ||
padding: 30px 20px; | ||
padding: 20px; | ||
} |
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 |
---|---|---|
@@ -1,10 +1,14 @@ | ||
// Declare variables for use in all the template specific / main less files | ||
|
||
@purple: #682d71; | ||
@lightPurple: #bd6ddb; | ||
@white: #f6eff4; | ||
@veryLightGray: #DDDDDD; | ||
@lightestGray: #eeeeee; | ||
@blue: #1b3fc3; | ||
@primaryLinkHoverColor: #682d71; | ||
@secondaryLinkHoverColor: #bd6ddb; | ||
@secondaryFontColor: #f6eff4; | ||
@secondaryFontColorVariation: #DDDDDD; | ||
@primaryIconColor: #1b3fc3; | ||
|
||
@orange: #F06529; | ||
@html5Orange: #F06529; | ||
|
||
// Responsive variables | ||
@largeDesktopWidth: 1200px; | ||
@mediumDesktopWidth: 992px; | ||
@tabletWidth: 768px; |
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,9 +1,7 @@ | ||
<template name="footer"> | ||
<div class="padding-wrapper">pictures by <a href="http://www.flickr.com/photos/dexxus/">Paul Bica</a></div> | ||
{{#if currentUser}} | ||
<!-- p>You're logged in as {{currentUser.username}}, <a href="{{urlFor 'entrySignOut'}}">sign out here</a></p --> | ||
{{else}} | ||
<!-- a href="{{urlFor 'entrySignIn'}}">Sign in here</a> (or if you have no account <a href="{{urlFor 'entrySignUp'}}">sign up)</a --> | ||
{{/if}} | ||
<div class="ui inverted padding-wrapper footer segment"> | ||
project by <a href="https://github.com/matteodem">Matteo De Micheli</a>, | ||
pictures by <a href="http://www.flickr.com/photos/dexxus/">Paul Bica</a> | ||
</div> | ||
</template> | ||
|
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.