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
1 change: 0 additions & 1 deletion _includes/_head.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

<!-- Custom CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/styles/monokai.min.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="{{ '/css/main.css' | relative_url }}">

<link rel="alternate" type="application/rss+xml" title="Blog articles" href="{% link blog/feed.rss %}" />
Expand Down
6 changes: 0 additions & 6 deletions _includes/_js-bottom.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,3 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
<script src="https://kit.fontawesome.com/a7055d991d.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 700
});
</script>
4 changes: 2 additions & 2 deletions _includes/_masthead.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<section id="masthead">
<div class="container">
<div class="masthead-inner">
<div class="masthead-text" data-aos="fade-right">
<div class="masthead-text">
<h1><span>{{ site.title }}</span></h1>
<p>{{ site.description }}</p>
<div class="masthead-cta">
<a class="button button-primary" href="{{ site.baseurl }}/projects/">Projects</a>
<a class="button button-primary" href="{{ site.baseurl }}/about/">About</a>
</div>
</div>
<div class="masthead-image" data-aos="fade-down">
<div class="masthead-image">
<svg class="masthead-image-path" width="214px" height="217px">
<polygon fill="#FE4559"
points="0.100965794 125.225045 0.100965794 216.172414 213.283516 91.1197822 213.283516 0.172413793">
Expand Down
4 changes: 2 additions & 2 deletions _includes/_section-blog.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h2><span>{{site.data.description.blogTitle}}</span></h2>
</div>
<div class="blog-list">
{% for post in site.posts limit:3 %}
<a href="{{ post.url | relative_url }}" class="blog-item" data-aos="fade-down">
<a href="{{ post.url | relative_url }}" class="blog-item">
<div class="blog-item-content">
{% if post.image %}
<img src="{{ site.baseurl }}{{ post.image }}" alt="">
Expand All @@ -33,4 +33,4 @@ <h3>{{ post.title }}</h3>
<a class="button button-primary" href="{{ site.baseurl }}/blog/">See all posts</a>
</div>
</div>
</section>
</section>
2 changes: 1 addition & 1 deletion _includes/_section-projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h2><span>{{site.data.description.projectsTitle}}</span></h2>
<div class="projects-list">
{% assign projects = site.projects | where:'core', true %}
{% for project in projects limit:3 %}
<a href="{{ project.github }}" class="project-item" data-aos="fade-down">
<a href="{{ project.github }}" class="project-item">
<div class="project-item-content">
<div>
<img src="{{ site.baseurl }}/img/assets/icon-project.svg" alt="">
Expand Down
24 changes: 0 additions & 24 deletions _sass/components/_about.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,6 @@
//background: $brand-primary;
padding: 0 $base-point-grid * 18;
}

&:nth-child(1) {
transition-delay: 0.1s;
}

&:nth-child(2) {
transition-delay: 0.2s;
}

&:nth-child(3) {
transition-delay: 0.3s;
}

&:nth-child(4) {
transition-delay: 0.4s;
}

&:nth-child(5) {
transition-delay: 0.5s;
}

&:nth-child(6) {
transition-delay: 0.6s;
}
}
}

Expand Down
4 changes: 2 additions & 2 deletions about/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h1><span>{{ page.title }}</span></h1>

<div class="about-list">
{% for item in site.data.about %}
<div class="about-item" data-aos="fade-down">
<div class="about-item">
<img src="{{ site.baseurl }}{{ item.icon }}" title="{{ item.title }}" />
<h3>{{item.title}}</h3>
<p>{{item.description}}</p>
Expand All @@ -34,4 +34,4 @@ <h3>{{item.title}}</h3>
</div>
{% include _cta-conduct.html %}
<br /><br /><br />
{% include _cta-steering.html %}
{% include _cta-steering.html %}