Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wulfdewolf committed Apr 19, 2024
1 parent c108430 commit 4a9f8be
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 72 deletions.
9 changes: 1 addition & 8 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ pagination:
enabled: true

related_blog_posts:
enabled: true
enabled: false
max_related: 5

# Giscus comments (RECOMMENDED)
Expand All @@ -150,13 +150,6 @@ giscus:
disqus_shortname: al-folio # put your disqus shortname
# https://help.disqus.com/en/articles/1717111-what-s-a-shortname

# External sources.
# If you have blog posts published on medium.com or other external sources,
# you can display them in your blog by adding a link to the RSS feed.
external_sources:
- name: medium.com
rss_url: https://medium.com/@al-folio/feed

# -----------------------------------------------------------------------------
# Collections
# -----------------------------------------------------------------------------
Expand Down
22 changes: 10 additions & 12 deletions _includes/header.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<img class="carousel-image" src="/assets/img/banners/banner2.jpg" alt="Banner Image">
<img class="carousel-image" src="/assets/img/banners/banner3.jpg" alt="Banner Image">
<img class="carousel-image" src="/assets/img/banners/banner4.jpg" alt="Banner Image">
<img class="carousel-image" src="/assets/img/banners/banner1.jpg" alt="Banner Image">
</div>
</div>
</div>
Expand Down Expand Up @@ -131,25 +130,24 @@
.carousel {
width: 100%; /* 1 image, 100% of container width */
height: 500%; /* 5 images, each 100% of container height */
animation: carousel 100s infinite linear;
height: 400%; /* 4 images, each 100% of container height */
animation: carousel 100s infinite linear alternate;
}
.carousel-image {
float: left; /* add this line */
width: 100%; /* each image takes up 100% of the carousel width */
height: 20%; /* each image takes up 20% of the carousel height */
height: 25%; /* each image takes up 25% of the carousel height */
}
@keyframes carousel {
0%, 19% { transform: translateY(0); }
20%, 39% { transform: translateY(-20%); }
40%, 59% { transform: translateY(-40%); }
60%, 79% { transform: translateY(-60%); }
80%, 99% { transform: translateY(-80%); }
100%, 119% { transform: translateY(-100%); }
120%, 139% { transform: translateY(-120%); } /* back to the first image */
140%, 150% { transform: translateY(-140%); } /* pause at the first image */
0%, 20% { transform: translateY(0); }
22%, 40% { transform: translateY(-25%); }
42%, 60% { transform: translateY(-50%); }
62%, 80% { transform: translateY(-75%); }
82%, 85% { transform: translateY(-50%); }
87%, 90% { transform: translateY(-25%); }
92%, 100% { transform: translateY(0); }
}
</style>
</header>
3 changes: 3 additions & 0 deletions _layouts/page.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ layout: default
<div class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
<p class="post-meta">
{% if page.author %}{{ page.author }}{% endif %}
</p>
<p class="post-description">{{ page.description }}</p>
</header>

Expand Down
117 changes: 67 additions & 50 deletions _layouts/profiles.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,23 @@ layout: page
{% if profile.email %}
<div class="more-info"><a href="mailto:{{ profile.email }}">{{ profile.email }}</a></div>
{% endif %}
<button class="more-info-btn">ABS</button>
<div class="more-info-content hidden">
{% if profile.website %}
<div class="more-info" style="padding-left: 10px;">
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
</div>
{% endif %}
{% if profile.more_info %}
<div style="padding-left: 10px;">{{ profile.more_info }}</div>
{% endif %}
{% if profile.content %}
{% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %}
{{ profile_content | markdownify }}
{% endif %}
</div>
{% if profile.website or profile.more_info or profile.content %}
<button class="more-info-btn">ABS</button>
<div class="more-info-content hidden">
{% if profile.website %}
<div class="more-info" style="padding-left: 10px;">
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
</div>
{% endif %}
{% if profile.more_info %}
<div style="padding-left: 10px;">{{ profile.more_info }}</div>
{% endif %}
{% if profile.content %}
{% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %}
{{ profile_content | markdownify }}
{% endif %}
</div>
{% endif %}
{% endif %}
<br>
</div>
Expand Down Expand Up @@ -111,21 +113,23 @@ layout: page
{% if profile.email %}
<div class="more-info"><a href="mailto:{{ profile.email }}">{{ profile.email }}</a></div>
{% endif %}
<button class="more-info-btn">ABS</button>
<div class="more-info-content hidden">
{% if profile.website %}
<div class="more-info" style="padding-left: 10px;">
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
</div>
{% endif %}
{% if profile.more_info %}
<div style="padding-left: 10px;">{{ profile.more_info }}</div>
{% endif %}
{% if profile.content %}
{% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %}
{{ profile_content | markdownify }}
{% endif %}
</div>
{% if profile.website or profile.more_info or profile.content %}
<button class="more-info-btn">ABS</button>
<div class="more-info-content hidden">
{% if profile.website %}
<div class="more-info" style="padding-left: 10px;">
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
</div>
{% endif %}
{% if profile.more_info %}
<div style="padding-left: 10px;">{{ profile.more_info }}</div>
{% endif %}
{% if profile.content %}
{% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %}
{{ profile_content | markdownify }}
{% endif %}
</div>
{% endif %}
{% endif %}
<br>
</div>
Expand Down Expand Up @@ -156,21 +160,23 @@ layout: page
{% if profile.email %}
<div class="more-info"><a href="mailto:{{ profile.email }}">{{ profile.email }}</a></div>
{% endif %}
<button class="more-info-btn">ABS</button>
<div class="more-info-content hidden">
{% if profile.website %}
<div class="more-info" style="padding-left: 10px;">
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
</div>
{% endif %}
{% if profile.more_info %}
<div style="padding-left: 10px;">{{ profile.more_info }}</div>
{% endif %}
{% if profile.content %}
{% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %}
{{ profile_content | markdownify }}
{% endif %}
</div>
{% if profile.website or profile.more_info or profile.content %}
<button class="more-info-btn">ABS</button>
<div class="more-info-content hidden">
{% if profile.website %}
<div class="more-info" style="padding-left: 10px;">
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
</div>
{% endif %}
{% if profile.more_info %}
<div style="padding-left: 10px;">{{ profile.more_info }}</div>
{% endif %}
{% if profile.content %}
{% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %}
{{ profile_content | markdownify }}
{% endif %}
</div>
{% endif %}
{% endif %}
<br>
</div>
Expand Down Expand Up @@ -201,12 +207,23 @@ layout: page
{% if profile.email %}
<div class="more-info"><a href="mailto:{{ profile.email }}">{{ profile.email }}</a></div>
{% endif %}
{% if profile.website %}
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
{% if profile.website or profile.more_info or profile.content %}
<button class="more-info-btn">ABS</button>
<div class="more-info-content hidden">
{% if profile.website %}
<div class="more-info" style="padding-left: 10px;">
<p><a href="http://{{ profile.website }}">{{ profile.website }}</a></p>
</div>
{% endif %}
{% if profile.more_info %}
<div style="padding-left: 10px;">{{ profile.more_info }}</div>
{% endif %}
{% if profile.content %}
{% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %}
{{ profile_content | markdownify }}
{% endif %}
</div>
{% endif %}
<div class="abstract hidden">
<p>{{ profile.more_info }}</p>
</div>
{% endif %}
<br>
</div>
Expand Down
3 changes: 1 addition & 2 deletions _projects/spatial_memory.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
---
layout: page
title: Spatial Memory
author: by Kaja Kubickova
importance: 1
category: work
related_publications: true
img: assets/img/kaja_spatial_memory.png
---

## The Neural Map

Our sense of navigation is not something we tend to consider too deeply in our day-to-day lives. Nevertheless, we somehow have a subconscious knowledge of were we are in the world and where we are going. We use it everywhere - to walk home, to go to the grocery store, to walk to the bathroom in the middle of the night.

How we navigate is largely dependent on what information is available to us. The brain is complex and uses a variety of strategies to determine our position, relative to other landmarks and to start or goal locations. Among those is beaconing, a strategy where we use a distant object to navigate to - say, “Hey, there’s a neon sign here saying ‘Pub’” - that’s probably the entrance to the pub. But what if you don’t have those clues?
Expand Down

0 comments on commit 4a9f8be

Please sign in to comment.