Ja...
This commit is contained in:
		
							
								
								
									
										4
									
								
								components/03_Organisms/_organisms.scss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								components/03_Organisms/_organisms.scss
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
@import 'header/header';
 | 
			
		||||
@import 'navigation/navigation';
 | 
			
		||||
@import 'introduction/introduction';
 | 
			
		||||
@import 'placeGrid/placeGrid';
 | 
			
		||||
							
								
								
									
										16
									
								
								components/03_Organisms/header/_header.scss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								components/03_Organisms/header/_header.scss
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
			
		||||
.LP-Header {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    align-items: center;
 | 
			
		||||
    justify-content: space-between;
 | 
			
		||||
    margin-bottom: 70px;
 | 
			
		||||
 | 
			
		||||
    &__Logo {
 | 
			
		||||
        max-width: 300px;
 | 
			
		||||
        width: 35%;
 | 
			
		||||
        object-fit:contain;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .LP-Header__Navigation{
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										1
									
								
								components/03_Organisms/header/header.config.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								components/03_Organisms/header/header.config.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
{}
 | 
			
		||||
							
								
								
									
										8
									
								
								components/03_Organisms/header/header.hbs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								components/03_Organisms/header/header.hbs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
			
		||||
<header class="LP-Header">
 | 
			
		||||
    <div class="LP-Header__Logo">
 | 
			
		||||
        {{render '@logo'}}
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="LP-Header__Navigation">
 | 
			
		||||
        {{> @navigation}}
 | 
			
		||||
    </div>
 | 
			
		||||
</header>
 | 
			
		||||
							
								
								
									
										10
									
								
								components/03_Organisms/introduction/_introduction.scss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								components/03_Organisms/introduction/_introduction.scss
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
.LP-Introduction{
 | 
			
		||||
 | 
			
		||||
    .LP-Headline{
 | 
			
		||||
        font-size: 2rem;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .LP-Text{
 | 
			
		||||
        font-size: 1.3rem;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
    "context": {}
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										4
									
								
								components/03_Organisms/introduction/introduction.hbs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								components/03_Organisms/introduction/introduction.hbs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
			
		||||
 | 
			
		||||
<div class="LP-Introduction">
 | 
			
		||||
    {{> @textsection headline='Welcome to the urban exploring registry' text='Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.'}}
 | 
			
		||||
</div>
 | 
			
		||||
							
								
								
									
										24
									
								
								components/03_Organisms/navigation/_navigation.scss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								components/03_Organisms/navigation/_navigation.scss
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
.LP-Menu{
 | 
			
		||||
    &__List {
 | 
			
		||||
        list-style-type: none;
 | 
			
		||||
        display: inline-flex;
 | 
			
		||||
        justify-content: space-around;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    &__Item {
 | 
			
		||||
        padding: 10px 15px;
 | 
			
		||||
        margin: 0 15px;
 | 
			
		||||
        width: 100px;
 | 
			
		||||
        text-align: center;
 | 
			
		||||
        background-color: transparent;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    .LP-Link__Text {
 | 
			
		||||
        color: $-secondary-color;
 | 
			
		||||
        font-weight: bold;
 | 
			
		||||
        text-shadow: 0px 0px 20px white;
 | 
			
		||||
        &:hover{
 | 
			
		||||
            color: $-primary-accent-color;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
    
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										7
									
								
								components/03_Organisms/navigation/navigation.hbs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								components/03_Organisms/navigation/navigation.hbs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
			
		||||
<nav class="LP-Menu">
 | 
			
		||||
    <ul class="LP-Menu__List">
 | 
			
		||||
        <li class="LP-Menu__Item">{{> @link text='Home'}}</li>
 | 
			
		||||
        <li class="LP-Menu__Item">{{> @link text='About'}}</li>
 | 
			
		||||
        <li class="LP-Menu__Item">{{> @link text='Contact'}}</li>
 | 
			
		||||
    </ul>
 | 
			
		||||
</nav>
 | 
			
		||||
							
								
								
									
										14
									
								
								components/03_Organisms/placeGrid/_placeGrid.scss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								components/03_Organisms/placeGrid/_placeGrid.scss
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
			
		||||
.LP-Place__Grid{
 | 
			
		||||
    margin: 0;
 | 
			
		||||
    padding: 0;
 | 
			
		||||
    list-style-type: none;
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-direction: row;
 | 
			
		||||
    flex-wrap: wrap;
 | 
			
		||||
 | 
			
		||||
    .LP-Place__Item{
 | 
			
		||||
        margin: 0 15px;
 | 
			
		||||
        
 | 
			
		||||
        margin-bottom: 50px;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										1
									
								
								components/03_Organisms/placeGrid/placeGrid.config.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								components/03_Organisms/placeGrid/placeGrid.config.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1 @@
 | 
			
		||||
{}
 | 
			
		||||
							
								
								
									
										35
									
								
								components/03_Organisms/placeGrid/placeGrid.hbs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								components/03_Organisms/placeGrid/placeGrid.hbs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,35 @@
 | 
			
		||||
<div class="LP-Content">
 | 
			
		||||
    {{> @headline headline='Explorere the latest locations'}}
 | 
			
		||||
    <ul class="LP-Place__Grid">
 | 
			
		||||
         <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/photo_2020-04-09_18-27-13.jpg' title='Haus Maikotten' location='Münster (westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/Bildschirmfoto_von_2020-07-13_11-03-07.png' title='Kokerei in Hamm' location='Hamm (westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/photo_2020-05-02_18-11-21.jpg' title='Zementwerk Mersmann' location='Beckum (Westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/photo_2020-04-09_18-27-13.jpg' title='Haus Maikotten' location='Münster (westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/photo_2020-05-02_18-11-21.jpg' title='Zementwerk Mersmann' location='Beckum (Westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
        <li class="LP-Place__Item">
 | 
			
		||||
            {{> @place image='/images/Bildschirmfoto_von_2020-07-13_11-03-07.png' title='Kokerei in Hamm' location='Hamm (westfalen)' }}
 | 
			
		||||
        </li>
 | 
			
		||||
    </ul>
 | 
			
		||||
</div>
 | 
			
		||||
		Reference in New Issue
	
	Block a user