Google-Bescheibungen aller Seiten

This commit is contained in:
Simon Martens
2025-03-02 14:19:00 +01:00
parent 5402dc5329
commit a5abdf50d3
27 changed files with 103 additions and 11 deletions

View File

@@ -77,11 +77,19 @@ func NewIndexTexte(record *core.Record) *IndexTexte {
return i
}
func (t *IndexTexte) Titel() string {
func (t *IndexTexte) Title() string {
return t.GetString(F_TITLE)
}
func (t *IndexTexte) SetTitel(titel string) {
func (t *IndexTexte) SetDescription(s string) {
t.Set(F_DESCRIPTION, s)
}
func (t *IndexTexte) Description() string {
return t.GetString(F_DESCRIPTION)
}
func (t *IndexTexte) SetTitle(titel string) {
t.Set(F_TITLE, titel)
}