Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions _sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,7 @@
&.avatar {
border-radius: 100%;
overflow: hidden;
background: white;

img {
border-radius: 100%;
Expand Down Expand Up @@ -2060,3 +2061,8 @@
.list_posts{

}

.image_box{
width: 150px;
border: 5px dashed #r7a239;
}
68 changes: 11 additions & 57 deletions allPosts.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,46 +5,6 @@
<!--
Temporary
-->
<script>

function closeModal(title){
var modal = document.getElementById(title);
modal.className = "Modal is hidden is visuallyHidden";
document.getElementById("main").classList.remove("is-blurred");
document.getElementById("header").classList.remove("is-blurred");
}

function openModal(title){
var model = document.getElementById(title);
var container = document.getElementById("main");
modal.className = "Modal is-visuallyHidden";
setTimeout(function(){
document.getElementById("main").classList.add("is-blurred");
document.getElementById("header").classList.add("is-blurred");
modal.className = "Modal";
}, 50);
}

window.onclick=fucntion(event){
consol.log(event.target.className);
consol.log(event.target.classList);
if (event.target.className == "Modal"){
event.target.className = "Modal is-hidden is-visuallyHidden";
document.getElementById("main").classList.remove("is-blurred");
document.getElementById("header").classList.remove("is-blurred");
}
}

</script>

{% for post in site.posts limit:3 %}
<div class='Modal is-hidden is-visuallyHidden' id='{{ post.title }}'>
<div class='Modal-content'>
<span id="closeModal" class="Close" onclick="closeModal('{{ post.title }}')">&times;</span>
{{ post }}
</div>
</div>
{% endfor %}


<body>
Expand All @@ -64,25 +24,19 @@
</script>

<!-- All posts -->
<h3>All Posts</h3>
<div class="features">
{% for post in site.posts limit:3 %}
<article data-aos="fade-left">
<div class="btn_container">
<a href="#{{ post.title }}" onclick="openModal('{{ post.title }}')">
<div class="card">
<img class="image" style="padding: 20px 20px 20px 20px; margin-bottom: 0px;" src="{{base.url}}/images/posts/{{post.img}}" alt=""/>
<div class="inner">
<h4 style="padding-top:36px">{{ post.title }}</h4>
<p style='margin-bottom: 0px;'>{{ post.excerpt }}</p>
<br/>
</div>
</div>
</a>
<h3 style="padding-left: 20px">All Posts</h3>
<ul style="list-style-type: none">
{% for post in site.posts %}
<li>
<div class="card" style="padding: 20px 20px 20px 20px">
<div class="imgae_box">
<img src="{{base.url}}/images/posts/{{post.img}}" style="width:150px">
</div>
</article>
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
</li>
{% endfor %}
</div>
</ul>
</div>
</div>
</body>
7 changes: 6 additions & 1 deletion assets/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/main.css.map

Large diffs are not rendered by default.

Binary file added images/team/Justin.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 9 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ <h2>Levity</h2>
operational obstacles through digital innovations.
</p>
</div>
<a href="/learnMore.html">Learn More</a>
</section>

<!-- Solutions -->
Expand Down Expand Up @@ -156,7 +157,7 @@ <h4 style="padding-top:36px">{{ post.title }}</h4>
</div>
</article>
{% endfor %}
<!-- <a href="/allPosts.html">All Posts</a> -->
<a href="/allPosts.html">All Posts</a>
</div>
</div>
</section>
Expand Down Expand Up @@ -197,6 +198,13 @@ <h3>Our Team</h3>
<p>Graphic Designer</p>
</div>
</div>
<div class="team-col">
<div class="team-member">
<img src="images/team/Justin.JPG" alt="p4">
<div class="team-member-name""><b>Justin Rubek</b></div>
<p>Software Engineer</p>
</div>
</div>
</div>
</div>
</div>
Expand Down
22 changes: 22 additions & 0 deletions learnMore.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
layout: default
---

<body>
<div class="loader">
<img src="/images/loading.gif" alt="Loading...">
</div>

<div id="main">

<script>
function toggleHeader(){
document.getElementById("header").classList.toggle('hidden');
document.getElementById("wrapper").classList.toggle('expand');
document.getElementById("toggle-btn").classList.toggle('shift');
}
</script>

</div>

</body>
100 changes: 100 additions & 0 deletions tags

Large diffs are not rendered by default.