brc/index.php

105 lines
3.6 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php include('header.tpl'); ?>
<div id="content_padding">
<div class="hero-image">
<img src="images/logo_button/title_ivory.png" alt="bricabracomania metalworks logo">
</div>
</div>
<div class="container">
<section class="home-about">
<script type="text/javascript">
function show_posts(myArr) {
var ar = myArr.graphql.user.edge_owner_to_timeline_media.edges;
var images = [];
var thumb_html = '';
var index = 0;
ar.forEach(element => {
image = {
thumb_url: element.node.thumbnail_resources[1].src,
url: "https://instagram.com/p/" + element.node.shortcode
}
console.log(element);
if (index < 8) {
images.push(image)
}
index += 1
});
images.forEach(e => {
thumb_html += '<a href="' + e.url + '"><img class="images" src="'+ e.thumb_url + '"/></a>' // Hier war die class falsch zugewiesen
}); // Muss hier ein ";" hin?
document.getElementById('ig_container').innerHTML = thumb_html;
}
var xmlhttp = new XMLHttpRequest();
var url = "https://www.instagram.com/bricabracomania_metalworks/?__a=1";
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myArr = JSON.parse(this.responseText);
show_posts(myArr);
}
};
xmlhttp.open("GET", url, true);
xmlhttp.send(); // Muss hier ein ";" hin?
</script>
<div class="home-about-textbox parallax--box">
<h1>Who we are</h1>
<p><i>Bricabracomania metalworks is home of antique-inspired, alternative jewelry with an obscure, sculptural twist.</i></p>
<p><strong>Every design is created with passion and devotion in the best traditions of wax carving by hand, experimenting with forms and textures, as well as unconventional material combinations and patinas.</strong></p>
<p>We celebrate statement pieces, bold designs and mix of eras from classical forms of ancient Rome to intricate details of Victorian memorabilia. Inspired by legends, religious motives and the occult, pirate tales and cabinets of curiosities, these creations are meant to become life companions and talismans for their owners.</p>
</div>
</section>
</div>
<section class="portfolio">
<!-- portfolio item 01 -->
<figure class="port-item">
<img src="images/portfolio/portfolio-01.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>Project title</p>
<a href="projects" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<!-- portfolio item 03 -->
<figure class="port-item">
<img src="images/portfolio/portfolio-02.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>TELL TALE HEARTS</p>
<a href="projects" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
<!-- portfolio item 05 -->
<figure class="port-item">
<img src="images\portfolio\portfolio-03.jpg" alt="portfolio item">
<figcaption class="port-desc">
<p>INSPECTING THE DEAD MAN'S CHEST</p>
<a href="projects" class="button button-accent button-small">Project details</a>
</figcaption>
</figure>
</section>
<!-- <section class="cta">
<div class="container">
<h2 class="title title-cta">Order your piece now!
</h2>
<a href="contacts" class="button button-dark">Order</a>
</div>
</section> -->
<p><a style="color: #f9f9ed; text-decoration: none;" 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>
<?php include('footer.tpl'); ?>