Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SickSmile1 committed Dec 19, 2024
1 parent 4804ed4 commit ad3cb44
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 31 deletions.
6 changes: 3 additions & 3 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Site settings
# -----------------------------------------------------------------------------

title: dtool landing page # the website title (if blank, full name will be used instead)
title: dtool # the website title (if blank, full name will be used instead)
first_name: Johannes
middle_name: L.
last_name: Hörmann
Expand All @@ -15,7 +15,7 @@ footer_text: >
Photos from <a href="https://unsplash.com" target="_blank">Unsplash</a>.
keywords: jekyll, jekyll-theme, academic-website, portfolio-website # add your own keywords or leave empty
lang: en # the language of your site (for example: en, fr, cn, ru, etc.)
icon: ⚛️ # the emoji used as the favicon (alternatively, provide image name in /assets/img/)
icon: dtool_logo.png #⚛️ # the emoji used as the favicon (alternatively, provide image name in /assets/img/)

url: https://livmats.github.io # the base hostname & protocol for your site
baseurl: /dtool-jekyll-website/ # the subpath of your site, e.g. /blog/. Leave blank for root
Expand Down Expand Up @@ -49,7 +49,7 @@ rss_icon: true

navbar_fixed: true
footer_fixed: true
search_enabled: true
search_enabled: false
socials_in_search: true
bib_search: true

Expand Down
8 changes: 8 additions & 0 deletions _includes/footer.liquid
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@

<div class="funding-badges container mt-20 ml-auto mr-auto">
<a href="https://pastewka.org/"><img src="{{ site.baseurl }}/assets/images/uni_freiburg_logo.5739c1dfe3e3.png" alt="Funder 1" class="ml-auto mr-auto"></a>
<span class="text">— Funding by —</span>
<a href="https://www.livmats.uni-freiburg.de/en"><img src="{{ site.baseurl }}/assets/images/logo_livmats_small.8dc8a4c03938.jpg" alt="Funder 2" class="ml-auto mr-auto"></a>
</div>

{% if site.footer_fixed %}
<footer class="fixed-bottom" role="contentinfo">
<div class="container mt-0">
Expand Down Expand Up @@ -33,3 +40,4 @@
</div>
</footer>
{% endif %}

3 changes: 3 additions & 0 deletions _includes/header.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<!-- Nav Bar -->
<nav id="navbar" class="navbar navbar-light navbar-expand-sm {% if site.navbar_fixed %}fixed-top{% else %}sticky-top{% endif %}" role="navigation">
<div class="container">
<div class="header-left">
<img src="{{ site.baseurl }}/assets/images/dtool_logo.png" alt="dtool logo" class="logo" style="height: 48px; width:48px">
</div>
{% if page.permalink != '/' %}
<a class="navbar-brand title font-weight-lighter" href="{{ site.baseurl }}/">
{% if site.title == 'blank' %}
Expand Down
29 changes: 2 additions & 27 deletions _pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,9 @@ layout: about
title: about
permalink: /
---
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dtool</title>
<link rel="stylesheet" href="styles.css">
</head>


<body>
<header>
<div class="header-left">
<img src="C:\Users\ritik\OneDrive\Desktop\LivMat\Job 2\dtool-jekyll-website\assets\img\images\dtool_logo.png" alt="dtool logo" class="logo">
<h1>dtool</h1>
</div>
<nav class="header-right">
<a href="index.html">About</a>
<a href="development.html">Development</a> <!-- Updated Link -->
<a href="publications.html">Publications</a> <!-- Updated Link -->
</nav>
</header>
<main>
<section id="introduction">
<h2>Introduction</h2>
Expand All @@ -30,13 +14,4 @@ permalink: /
<p class="intro-text">The Python API gives complete access to the data and metadata in a dataset. It makes it easy to create scripts for processing the items, or a subset of items, in a dataset. The Python API also allows datasets to be constructed programmatically.</p>
</section>
</main>
<footer>
<div class="funding-badges">
<a href="https://pastewka.org/"><img src="images/uni_freiburg_logo.5739c1dfe3e3.png" alt="Funder 1"></a>
<span class="text">— Funding by —</span>
<a href="https://www.livmats.uni-freiburg.de/en"><img src="images/logo_livmats_small.8dc8a4c03938.jpg" alt="Funder 2"></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>
4 changes: 3 additions & 1 deletion _pages/publications.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ nav_order: 2

<!-- _pages/publications.md -->

<!-- Bibsearch Feature -->

{% include bib_search.liquid %}

<div class="publications">

{% bibliography %}

<h3 style="padding-top:30; border-top: 1px solid var(--global-divider-color);" >Publications empowered by dtool <br></h3>
{% bibliography --file empowered %}

</div>

0 comments on commit ad3cb44

Please sign in to comment.