You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block title %}{{ SITENAME }}{%endblock%}
 | 
						|
 | 
						|
{% block bodyclass %}algoliterary-works{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <h1>{{ page.title }}</h1>
 | 
						|
    {{ page.content }}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block sidebar %}
 | 
						|
  <h2>Latest Algoliterary experiments</h2>
 | 
						|
  {% for article in categories|get_category_articles('algoliterary-works') %}
 | 
						|
    <details>
 | 
						|
      <summary>
 | 
						|
        <h3>{{ article.title }}</h3>
 | 
						|
        <dl>
 | 
						|
          {{ article.algorithm|display_if_set('Algorithm')}}
 | 
						|
          {{ article.trees|display_if_set('Trees')}}
 | 
						|
          {{ article.humans|display_if_set('Humans')}}
 | 
						|
          {{ article.language|display_if_set('Language')}}
 | 
						|
          {{ article.published|display_if_set('Published')}}
 | 
						|
          {{ article.license|display_if_set('License')}}
 | 
						|
          <dt></dt>
 | 
						|
          <dd class="read-online-link"><a href="{{ article.publication_url }}">Read the book online ⤤</a></dd>
 | 
						|
        </dl>
 | 
						|
      </summary>
 | 
						|
      {{ article.content }}
 | 
						|
      <dl>
 | 
						|
        {{ article.publication_url|display_if_set('URL')}}
 | 
						|
        {{ article.repository|display_if_set('Repository')}}
 | 
						|
        {{ article.support|display_if_set('With the support of')}}
 | 
						|
        {{ article.thanks|display_if_set('Thanks to')}}
 | 
						|
      </dl>
 | 
						|
    </details>
 | 
						|
  {% endfor %}
 | 
						|
{% endblock %} |