static #2
7 changed files with 22 additions and 25 deletions
|
@ -15,10 +15,10 @@
|
||||||
<img src="img/logo.png" alt="bricabracomania logo" class="logo" />
|
<img src="img/logo.png" alt="bricabracomania logo" class="logo" />
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="index.html">Home</a></li>
|
||||||
<li><a href="about">About</a></li>
|
<li><a href="/">About</a></li>
|
||||||
<li><a href="projects">Projects</a></li>
|
<li><a href="projects.html">Projects</a></li>
|
||||||
<li><a href="contacts">Contacts</a></li>
|
<li><a href="contacts.html">Contacts</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
|
@ -15,10 +15,10 @@
|
||||||
<img src="img/logo.png" alt="bricabracomania logo" class="logo" />
|
<img src="img/logo.png" alt="bricabracomania logo" class="logo" />
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="index.html">Home</a></li>
|
||||||
<li><a href="about">About</a></li>
|
<li><a href="about.html">About</a></li>
|
||||||
<li><a href="projects">Projects</a></li>
|
<li><a href="projects.html">Projects</a></li>
|
||||||
<li><a href="contacts">Contacts</a></li>
|
<li><a href="/">Contacts</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
BIN
brc_static/favicon.ico
Normal file
BIN
brc_static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.4 KiB |
BIN
brc_static/favicon.png
Normal file
BIN
brc_static/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 50 KiB |
|
@ -5,14 +5,12 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>bricabracomania.</title>
|
<title>bricabracomania.</title>
|
||||||
<link href="css/styles.css" rel="stylesheet" type="text/css">
|
<link href="css/styles.css" rel="stylesheet" type="text/css">
|
||||||
<link rel="icon"
|
<link rel="icon" type="image/ico" href="/favicon.ico">
|
||||||
type="image/png"
|
|
||||||
href="/img/myicon.png" />
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body style="background-color:black;">
|
<body style="background-color:black;">
|
||||||
<header>
|
<header>
|
||||||
<img src="img/logo.png" alt="bricabracomania logo" class="logo" />
|
<img src="img/logo.png" alt="bricabracomania logo" class="logo" /> <!--ich hab hier bisschen rumgespielt aber irgendwie lässt sich das icon nicht einfügen-->
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="/">Home</a></li>
|
||||||
|
@ -27,7 +25,7 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="title parallax--box"><span><img src="img/title.png" alt="bricabracomania metalworks"></span>
|
<h1 class="title parallax--box"><span><img src="img/title.png" alt="bricabracomania metalworks"></span>
|
||||||
</h1>
|
</h1>
|
||||||
<a href="/projects" class="button button-accent">See Our Work</a>
|
<a href="/projects.html" class="button button-accent">See Our Work</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -55,8 +53,8 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
images.forEach(e => {
|
images.forEach(e => {
|
||||||
thumb_html += '<a href="' + e.url + '"><img class="images" src="'+ e.thumb_url + '"/></a>' // Hier war die class falsch zugewiesen
|
thumb_html += '<a href="' + e.url + '"><img class="images" src="'+ e.thumb_url + '"/></a>'
|
||||||
}); // Muss hier ein ";" hin?
|
});
|
||||||
|
|
||||||
document.getElementById('ig_container').innerHTML = thumb_html;
|
document.getElementById('ig_container').innerHTML = thumb_html;
|
||||||
}
|
}
|
||||||
|
@ -71,7 +69,7 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
xmlhttp.open("GET", url, true);
|
xmlhttp.open("GET", url, true);
|
||||||
xmlhttp.send(); <!-- Muss hier ein ";" hin? -->
|
xmlhttp.send();
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -92,7 +90,7 @@
|
||||||
<img src="img/portfolio-01.jpg" alt="portfolio item">
|
<img src="img/portfolio-01.jpg" alt="portfolio item">
|
||||||
<figcaption class="port-desc">
|
<figcaption class="port-desc">
|
||||||
<p>Project title</p>
|
<p>Project title</p>
|
||||||
<a href="projects" class="button button-accent button-small">Project details</a>
|
<a href="projects.html" class="button button-accent button-small">Project details</a> <!-- Hier müsste dann genau auf das Projekt verlinkt werden (Autoscrollen?)-->
|
||||||
</figcaption>
|
</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
|
|
||||||
|
@ -101,7 +99,7 @@
|
||||||
<img src="img/portfolio-03.jpg" alt="portfolio item">
|
<img src="img/portfolio-03.jpg" alt="portfolio item">
|
||||||
<figcaption class="port-desc">
|
<figcaption class="port-desc">
|
||||||
<p>TELL TALE HEARTS</p>
|
<p>TELL TALE HEARTS</p>
|
||||||
<a href="projects" class="button button-accent button-small">Project details</a>
|
<a href="projects.html" class="button button-accent button-small">Project details</a> <!-- Hier müsste dann genau auf das Projekt verlinkt werden (Autoscrollen?)-->
|
||||||
</figcaption>
|
</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
|
|
||||||
|
@ -110,7 +108,7 @@
|
||||||
<img src="img/portfolio-05.jpg" alt="portfolio item">
|
<img src="img/portfolio-05.jpg" alt="portfolio item">
|
||||||
<figcaption class="port-desc">
|
<figcaption class="port-desc">
|
||||||
<p>INSPECTING THE DEAD MAN'S CHEST</p>
|
<p>INSPECTING THE DEAD MAN'S CHEST</p>
|
||||||
<a href="projects" class="button button-accent button-small">Project details</a>
|
<a href="projects.html" class="button button-accent button-small">Project details</a> <!-- Hier müsste dann genau auf das Projekt verlinkt werden (Autoscrollen?)-->
|
||||||
</figcaption>
|
</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
|
|
||||||
|
@ -120,13 +118,12 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h2 class="title title-cta">Order your piece now!
|
<h2 class="title title-cta">Order your piece now!
|
||||||
</h2>
|
</h2>
|
||||||
<a href="contacts" class="button button-dark">Order</a>
|
<a href="contacts.html" class="button button-dark">Order</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<p><a style="color: #f9f9ed; text-decoration: none; font-size: 15pt;" href="https://www.instagram.com/bricabracomania_metalworks/">Check out our instagram page</a></p>
|
<p><a style="color: #f9f9ed; text-decoration: none; font-size: 15pt;" href="https://www.instagram.com/bricabracomania_metalworks/">Check out our instagram page</a></p>
|
||||||
<div id="ig_container"><!-- instagram posts will be inserted here --></div>
|
<div id="ig_container"><!-- instagram posts will be inserted here --></div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
|
@ -14,10 +14,10 @@
|
||||||
<img src="img/logo.png" alt="bricabracomania logo" class="logo" />
|
<img src="img/logo.png" alt="bricabracomania logo" class="logo" />
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="index.html">Home</a></li>
|
||||||
<li><a href="about">About</a></li>
|
<li><a href="about.html">About</a></li>
|
||||||
<li><a href="projects">Projects</a></li>
|
<li><a href="/">Projects</a></li>
|
||||||
<li><a href="contacts">Contacts</a></li>
|
<li><a href="contacts.html">Contacts</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
Loading…
Reference in a new issue