-
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.
Some reorganization of styles and templates Updated mmh Signed-off-by: Christian Roth <christian.roth@port17.de>
- Loading branch information
Showing
25 changed files
with
150 additions
and
100 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,19 @@ | ||
@import 'nib' | ||
|
||
body | ||
background: linear-gradient(top, #ECCD35, #E45635); | ||
|
||
p.info | ||
margin-bottom: 2em | ||
|
||
pre.stack | ||
font: 70% "Consolas" | ||
border: 0 | ||
margin: 0 | ||
padding: 0 | ||
word-wrap: break-word | ||
overflow: scroll | ||
height: 60% | ||
|
||
&:empty | ||
display: none |
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
File renamed without changes.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ footer | |
font-weight: 100 | ||
z-index: 999 | ||
position: fixed | ||
bottom: 0 | ||
bottom: 50px | ||
left: 0 | ||
width: 100% | ||
|
||
|
File renamed without changes.
File renamed without changes.
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
Submodule mmh
updated
4 files
+31 −1 | lib/app/Server.coffee | |
+1 −0 | lib/app/index.coffee | |
+4 −8 | lib/extensions/01-passport.coffee | |
+11 −1 | skeleton/config/extensions.coffee |
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 was deleted.
Oops, something went wrong.
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,10 @@ | ||
extends layout/multi | ||
|
||
block css | ||
link(rel='stylesheet', href='/css/error.css') | ||
|
||
block body | ||
h1= name | ||
p.info= message | ||
|
||
pre.stack= stack |
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,36 +1,31 @@ | ||
!!!5 | ||
html | ||
|
||
head | ||
title node-galerie | ||
link(rel='stylesheet', href='/css/main.css') | ||
link(rel='stylesheet', href='/css/finalize.css') | ||
extends layout/multi | ||
|
||
script(type='text/javascript', src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js') | ||
block css | ||
link(rel='stylesheet', href='/css/finalize.css') | ||
|
||
body | ||
h1 Hi #{name} | ||
p.info Du meldest dich zum ersten Mal über einen externen Anbieter an. Bitte ergänze die restlichen Felder. | ||
block body | ||
h1 Hi #{name} | ||
p.info Du meldest dich zum ersten Mal über einen externen Anbieter an. Bitte ergänze die restlichen Felder. | ||
|
||
div.image | ||
img(src="#{avatar.url}") | ||
p avatar provided by #{avatar.provider} | ||
div.image | ||
img(src="#{avatar.url}") | ||
p avatar provided by #{avatar.provider} | ||
|
||
form(action='/auth/finalize', method='post') | ||
div.pair | ||
input.fullwidth(readonly, name='name', value='#{name}') | ||
form(action='/auth/finalize', method='post') | ||
div.pair | ||
input.fullwidth(readonly, name='name', value='#{name}') | ||
|
||
div.pair | ||
input.fullwidth(readonly, type='email', required, name='email', value='#{email}', placeholder='Email-Adresse') | ||
div.pair | ||
input.fullwidth(readonly, type='email', required, name='email', value='#{email}', placeholder='Email-Adresse') | ||
|
||
div.pair.hint--right(data-hint="Nickname") | ||
input.fullwidth(id="username", name='username', required, value='#{username}', placeholder='Nickname', class="#{missing_username ? 'missing' : ''}") | ||
div.pair.hint--right(data-hint="Nickname") | ||
input.fullwidth(id="username", name='username', required, value='#{username ? username : ''}', placeholder='Nickname', class="#{missing_username ? 'missing' : ''}") | ||
|
||
div.pair.hint--right(data-hint="Geburtstag") | ||
input.fullwidth(id="birthday", name='birthday', required, type='date', value='#{birthday}', placeholder='Geburtstag', class="#{missing_birthday ? 'missing' : ''}") | ||
div.pair.hint--right(data-hint="Geburtstag") | ||
input.fullwidth(id="birthday", name='birthday', required, type='date', value='#{birthday}', placeholder='Geburtstag', class="#{missing_birthday ? 'missing' : ''}") | ||
|
||
div.pair | ||
input(name='_id', type='hidden', value='#{_id}') | ||
button Zugang anlegen | ||
div.pair | ||
input(name='_id', type='hidden', value='#{_id}') | ||
button Zugang anlegen | ||
|
||
|
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,3 @@ | ||
extends layout/single | ||
|
||
block content |
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,15 @@ | ||
!!!5 | ||
html | ||
|
||
head | ||
title node-galerie | ||
link(rel='stylesheet', href='/css/main.css') | ||
block css | ||
|
||
script(type='text/javascript', src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js') | ||
block js | ||
|
||
body | ||
block body | ||
|
||
|
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 @@ | ||
!!! 5 | ||
html | ||
|
||
head | ||
title node-galerie | ||
link(rel='stylesheet', href='/css/main.css') | ||
block head | ||
script(type='text/javascript', src='//cdnjs.cloudflare.com/ajax/libs/require.js/2.1.8/require.js', 'data-main'='/js/main') | ||
|
||
body | ||
//header | ||
include ../includes/header.jade | ||
#content | ||
|
||
footer |