Skip to content

Commit

Permalink
Added archive notice
Browse files Browse the repository at this point in the history
  • Loading branch information
Budh Ram Gurung committed Oct 12, 2023
1 parent 50d044b commit 6c6acde
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 36 deletions.
8 changes: 8 additions & 0 deletions _includes/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,11 @@
</div>
</div>
</nav>
<div class="archive-notice">
<div class="container">
<div class="col-md-12">
TECH Setu has been discountinued since Dec 2021.
Check <a href="https://codetoearn.dev">Code To Earn</a>.
</div>
</div>
</div>
2 changes: 1 addition & 1 deletion _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
title: Blogs
---

<div class="blog-post-page page-margin">
<div class="blog-post-page">
<div class="container my-4">
<!-- Wrapper Start -->
<div class="row justify-content-center">
Expand Down
2 changes: 1 addition & 1 deletion _sass/_blog.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// blogs index page
.blogs-page {
margin-top: 62px;
margin-top: 0;

.page-header {
background: url($image_base_url + "/blogs-page-header.jpg") no-repeat center
Expand Down
13 changes: 13 additions & 0 deletions _sass/_home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,19 @@ header {
}
}

.archive-notice {
margin-top: 60px;
background-color: #1200AF;
color: #fff;
padding: 5px 0;
text-align: center;

a {
color: #fff;
text-decoration: underline;
}
}

> * {
z-index: 10;
}
Expand Down
3 changes: 3 additions & 0 deletions _sass/_responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@
font-size: 18px;
}
}
.archive-notice {
margin-top: 50px;
}
}
.workshops .container, .workshops-page .container {
max-width: 90%;
Expand Down
45 changes: 11 additions & 34 deletions pages/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,43 +13,20 @@ <h1 class="mb-0">Meet Our Team</h1>
Fostering Collaboration, Leadership and Community Building
</p>
</div>
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="home-tab" data-bs-toggle="tab" data-bs-target="#home"
type="button" role="tab" aria-controls="home" aria-selected="true">
Current Team
</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="profile-tab" data-bs-toggle="tab"
data-bs-target="#profile" type="button" role="tab" aria-controls="profile"
aria-selected="false">
Past Team
</button>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
<h1 class="my-5">Coming Soon ...</h1>
</div>
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">
<div class="row row-cols-2 row-cols-md-4 row-cols-lg-6 justify-content-center pt-5">
{% assign teams = site.data.team.leaders %}
{% assign teams = teams | concat: site.data.team.executives %}
<div class="row row-cols-2 row-cols-md-4 row-cols-lg-6 justify-content-center">
{% assign teams = site.data.team.leaders %}
{% assign teams = teams | concat: site.data.team.executives %}

{% for team in teams %}
{% include team-member.html team=team %}
{% endfor %}
{% for team in teams %}
{% include team-member.html team=team %}
{% endfor %}

{% assign teams = site.data.team.associates %}
{% assign teams = teams | concat: site.data.team.general %}
{% assign teams = site.data.team.associates %}
{% assign teams = teams | concat: site.data.team.general %}

{% for team in teams %}
{% include team-member.html team=team %}
{% endfor %}
</div>
</div>
{% for team in teams %}
{% include team-member.html team=team %}
{% endfor %}
</div>

</div>
</div>

0 comments on commit 6c6acde

Please sign in to comment.