60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block style %}
 | 
						|
<style>
 | 
						|
.grid-container {
 | 
						|
  display: grid;
 | 
						|
  grid-template-columns: repeat(6, auto); /* 7 columns for each piece of information */
 | 
						|
  gap: 10px;
 | 
						|
  justify-content: start;
 | 
						|
}
 | 
						|
 | 
						|
.grid-item {
 | 
						|
  /* Additional styling for grid items can go here */
 | 
						|
}
 | 
						|
 | 
						|
.heading {
 | 
						|
    grid-column: 1 / 7; /* Spans from the 1st line to the 7th line */
 | 
						|
}
 | 
						|
</style>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% macro row(item) %}
 | 
						|
<div class="grid-item text-end">{{ item.start.strftime("%a, %d %b %Y") }}</div>
 | 
						|
<div class="grid-item text-end">{{ item.end.strftime("%a, %d %b") }}</div>
 | 
						|
<div class="grid-item">{{ item.name }}</div>
 | 
						|
<div class="grid-item">{{ item.topic }}</div>
 | 
						|
<div class="grid-item">{{ item.location }}</div>
 | 
						|
<div class="grid-item"><a href="{{ item.url }}">{{ item.url }}</a></div>
 | 
						|
{% endmacro %}
 | 
						|
 | 
						|
{% macro section(heading, item_list) %}
 | 
						|
{% if item_list %}
 | 
						|
<div class="heading"><h2>{{heading}}</h2></div>
 | 
						|
{% for item in item_list %}{{ row(item) }}{% endfor %}
 | 
						|
{% endif %}
 | 
						|
{% endmacro %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
 | 
						|
<div class="container-fluid mt-2">
 | 
						|
 | 
						|
  <h1>Conferences</h1>
 | 
						|
 | 
						|
  <p>
 | 
						|
    <a href="{{ url_for("index") }}">← back to agenda</a>
 | 
						|
    |
 | 
						|
    <a href="{{ url_for("travel_list") }}">travel</a>
 | 
						|
    |
 | 
						|
    <strong>conference</strong>
 | 
						|
  </p>
 | 
						|
 | 
						|
  <div class="grid-container">
 | 
						|
    {{ section("Current", current) }}
 | 
						|
    {{ section("Future", future) }}
 | 
						|
    {{ section("Past", past|reverse) }}
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %}
 |