-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #557 from brickify/release/v0.9.3
Release/v0.9.3
- Loading branch information
Showing
15 changed files
with
136 additions
and
90 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
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,12 @@ | ||
footer | ||
padding-top 1em | ||
padding-top 2em | ||
width 100% | ||
|
||
.links | ||
margin-bottom 2em | ||
a | ||
color $gray-lighter | ||
|
||
#legal | ||
color #666 | ||
color lighten($gray-base, 40%) | ||
font-size 9px |
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,19 +1,34 @@ | ||
path = require 'path' | ||
|
||
module.exports.getLandingpage = (request, response) -> | ||
response.render path.join('landingpage','landingpage'), page: 'landing' | ||
response.render( | ||
path.join('landingpage','landingpage'), | ||
page: 'landing' | ||
) | ||
|
||
module.exports.getContribute = (request, response) -> | ||
response.render path.join('landingpage','contribute'), pageTitle: 'contribute' | ||
response.render( | ||
path.join('landingpage','contribute'), | ||
pageTitle: 'Contribute' | ||
) | ||
|
||
module.exports.getTeam = (request, response) -> | ||
response.render path.join('landingpage','team'), pageTitle: 'team' | ||
response.render( | ||
path.join('landingpage','team'), | ||
pageTitle: 'Team' | ||
) | ||
|
||
module.exports.getImprint = (request, response) -> | ||
response.render path.join('landingpage','imprint'), pageTitle: 'imprint' | ||
response.render( | ||
path.join('landingpage','imprint'), | ||
pageTitle: 'Imprint' | ||
) | ||
|
||
module.exports.getEducators = (request, response) -> | ||
response.render( | ||
path.join('landingpage','educators') | ||
{page: 'landing', pageTitle: 'educators'} | ||
{ | ||
page: 'landing', | ||
pageTitle: 'Educators' | ||
} | ||
) |
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,11 +1,19 @@ | ||
extends rootLayout | ||
extends ./rootLayout | ||
|
||
block styles | ||
link(rel='stylesheet', href='/styles/screen.css') | ||
|
||
block body | ||
p The requested URL | ||
= ' ' | ||
del could not get fabricated | ||
= ' ' | ||
ins was not found on this server! | ||
p Go back to | ||
= ' ' | ||
a(href="/") brickify | ||
.container | ||
|
||
h1: a(href='/') brickify | ||
|
||
p The requested URL | ||
= ' ' | ||
del could not get fabricated | ||
= ' ' | ||
ins was not found on this server! | ||
|
||
p Go back to | ||
= ' ' | ||
a(href="/") brickify |
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 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,16 +1,14 @@ | ||
footer | ||
center | ||
a(href='/') brickify.it | ||
center | ||
a(href='/contribute') Contribute | ||
footer.text-center | ||
.links | ||
a(href='https://github.com/brickify/brickify', target='_blank') Contribute | ||
| • | ||
a(href='/team') Team | ||
| • | ||
a(href='/imprint') Imprint | ||
p | ||
p#legal.text-center | ||
|LEGO#[sup ®] is a trademark of the LEGO Group of companies which | ||
|does not sponsor, authorize or endorse this site | ||
br | ||
|This product uses the Thingiverse API but is not endorsed or certified by | ||
|Thingiverse or its affiliates. | ||
|
||
p#legal. | ||
LEGO#[sup ®] is a trademark of the LEGO Group of companies which | ||
does not sponsor, authorize or endorse this site. | ||
#[br] | ||
This product uses the Thingiverse API but is not endorsed or certified by | ||
Thingiverse or its affiliates. |
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
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