[1.11.1]
This commit is contained in:
parent
b001efcd9a
commit
b296223ec7
|
@ -8,6 +8,10 @@ Tyto - Littérateur
|
|||
|
||||
# CURRENTLY IN DEV (in devel branch) !
|
||||
|
||||
## [1.11.1]
|
||||
- [help article]: added div box help
|
||||
- fix meta keywords, including domain tags in HTML pages
|
||||
|
||||
## [1.11.0]
|
||||
- added "! LOGO" mark in article header
|
||||
- - create HTML logo image in <article> > <header>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Package: tyto
|
||||
Version: 1.11.0
|
||||
Version: 1.11.1
|
||||
Section: custom
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
# version: 1.11.0
|
||||
# date: 2024-01-06 01:54:236
|
||||
# version: 1.11.1
|
||||
# date: 2024-01-08 1704734310
|
||||
# Tyto - Littérateur
|
||||
|
||||
# Copyright (C) 2023 Cyrille Louarn <echolib+tyto@a-lec.org>
|
||||
|
|
|
@ -92,7 +92,7 @@ def article_metas():
|
|||
post.needed_tags["title"],
|
||||
post.needed_tags["authors"],
|
||||
post.needed_tags["about"],
|
||||
post.needed_tags["tags"],
|
||||
domain.conf["tags"] + "," + post.needed_tags["tags"],
|
||||
# Canonical, template
|
||||
post.datas["www_url"],
|
||||
post.datas["rpa"], domain.cf.get("TEMPLATE_FILENAMES", "styles"),
|
||||
|
|
|
@ -658,6 +658,11 @@ logo: URI
|
|||
))
|
||||
))
|
||||
|
||||
# <div> box %s
|
||||
[[
|
||||
Contents in a <div>
|
||||
]]
|
||||
|
||||
# Block-Code. CSS Class (default "bcode")
|
||||
# ! Opened marker is at same position than closed marker
|
||||
{{ PyCode
|
||||
|
@ -700,6 +705,7 @@ logo: URI
|
|||
help_abbr_header,
|
||||
help_anc_header,
|
||||
css_info,
|
||||
css_info,
|
||||
help_list,
|
||||
help_cite,
|
||||
help_image_writer,
|
||||
|
|
|
@ -669,6 +669,11 @@ logo: URI
|
|||
))
|
||||
))
|
||||
|
||||
# Boite <div> %s
|
||||
[{
|
||||
Contenu dans une balise div
|
||||
]]
|
||||
|
||||
# Code (bloc). Class CSS possible (default "bcode")
|
||||
# ! Le marqueur d'ouverture est à la même position que le marqueur de fermeture
|
||||
{{ PyCode
|
||||
|
@ -711,6 +716,7 @@ logo: URI
|
|||
help_abbr_header,
|
||||
help_anc_header,
|
||||
css_info,
|
||||
css_info,
|
||||
help_list,
|
||||
help_cite,
|
||||
help_image_writer,
|
||||
|
|
Loading…
Reference in New Issue