Skip to content

Commit

Permalink
First attempt to fix issue oscar-system#227
Browse files Browse the repository at this point in the history
  • Loading branch information
aaruni96 committed Oct 23, 2024
1 parent 5c7fde6 commit c4fdbf5
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 4 deletions.
7 changes: 4 additions & 3 deletions _layouts/meeting.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
layout: default
---

{% assign meeting_pages = site.pages | where: "meeting_nr", page.meeting_nr | sort: "name" %}
{% assign meeting_pages = site.pages | where: "meeting_nr", page.meeting_nr | sort: "weight" %}
{% assign parent = meeting_pages | where: "is_meeting_index", "true" | first %}

<div class="meeting-nav">
<a href="{{ parent.url | relative_url }}">{{ parent.title }}</a>
<a href="{{parent.url | relative_url}}" style="{% if parent.url == page.url%} background: #c0fff3;{%endif%} font-size: xx-large; margin-bottom: 10px" >{{ parent.title }}</a>
<br>
{% for p in meeting_pages %}
{% if p.is_meeting_index != true %}
<a href="{{ p.url | relative_url }}">{{ p.title }}</a>
<a href="{{ p.url | relative_url }}" {% if p.url == page.url%} style="background: #c0fff3" {%endif%}>{{ p.title }}</a>
{% endif %}
{% endfor %}
</div>
Expand Down
10 changes: 9 additions & 1 deletion _sass/oscar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,20 @@ Based on https://codepen.io/jdsteinbach/pen/GYmQjo
}

.meeting-nav {
padding-bottom: 1rem;
margin-top: -40px;
padding-top: 40px;
padding-bottom: 40px;
padding-left: 60px;
margin-left: -60px;
background: #e4e4e7;
}

.meeting-nav a {
display: inline-block;
margin-left: 4px;
margin-right: 4px;
font-size: x-large;
padding: 5px;
}

.participants-organizer { color: green; }
Expand Down
4 changes: 4 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ title: Home
* [LEAN meets MaRDI and OSCAR (5 - 6 Dec, 2024 at TU Berlin).](https://polymake.org/doku.php/workshops/lean_workshop1224)
* [Computational Algebraic Geometry Workshop (18 - 22 Nov, 2024 at Durham University).](https://sites.google.com/view/durhamcompalggeom/home)

{% for e in site.data.events %}

{% endfor %}


## What is OSCAR?

Expand Down
1 change: 1 addition & 0 deletions meetings/2022-02/aims.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ layout: meeting
title: Aims
meeting: true
meeting_nr: 202202
weight: 2
---

This coding workshops goal is to develop a comprehensive tropical package for OSCAR. Main guideline will be the book "*Introduction to Tropical Algebraic Geometry*" by Diane Maclagan and Bernd Sturmfels. If time permits, further topics are listed in the program.
1 change: 1 addition & 0 deletions meetings/2022-02/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ title: Meeting 02/2022
meeting: true
meeting_nr: 202202
is_meeting_index: true
weight: 1
---

# OSCAR developer meeting - Tropical Geometry
Expand Down
1 change: 1 addition & 0 deletions meetings/2022-02/location.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ layout: meeting
title: Location
meeting: true
meeting_nr: 202202
weight: 5
---

The OSCAR Meeting in February 2022 takes place in-person in
Expand Down
1 change: 1 addition & 0 deletions meetings/2022-02/participants.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ layout: meeting
title: Participants
meeting: true
meeting_nr: 202202
weight: 6
people:
- {name: Firoozeh Aga, affiliation: TU Kaiserslautern}

Expand Down
1 change: 1 addition & 0 deletions meetings/2022-02/prepare.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ layout: meeting
title: Preparation
meeting: true
meeting_nr: 202202
weight: 3
---

*Before* the coding sprints begins, you should install and familiarize yourself with Julia and Oscar if you haven't done so already.
Expand Down
1 change: 1 addition & 0 deletions meetings/2022-02/program.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ layout: meeting
title: Program
meeting: true
meeting_nr: 202202
weight: 4
---


Expand Down

0 comments on commit c4fdbf5

Please sign in to comment.