fehlerbehebung
This commit is contained in:
parent
7bcfd9273f
commit
210a4288d3
6
html.go
6
html.go
|
@ -77,9 +77,9 @@ func htmlReplacer(input string, activePage string) string {
|
|||
break
|
||||
}
|
||||
|
||||
tempA = htmlElement("h2", htmlClean(Event.title), "title")
|
||||
tempA += htmlElement("p", htmlClean(Event.date), "date")
|
||||
tempA += htmlElement("p", htmlClean(Event.description), "desc")
|
||||
tempA = htmlElement("h2", htmlClean(Event.title), "class=\"title\"")
|
||||
tempA += htmlElement("p", htmlClean(Event.date), "class=\"dat\"")
|
||||
tempA += htmlElement("p", htmlClean(Event.description), "class=\"desc\"")
|
||||
tempB += htmlLinkElement(htmlElement("div", tempA, "class=\"event\""), "event/"+strconv.Itoa(Event.id), false, "class=\"event\"")
|
||||
tempB += "!SPLIT"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue