Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
230a6278cc | |||
da0d65d40b | |||
42d6e0c198 | |||
a2d219b2c0 |
@ -23,10 +23,6 @@ func GenerateRSS(c *Config, db *DB) (*string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, article := range articles {
|
for _, article := range articles {
|
||||||
if !article.Published {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
tags, err := db.GetArticleTags(article.ID)
|
tags, err := db.GetArticleTags(article.ID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("error getting tags for articles for RSS feed: %v", err)
|
return nil, fmt.Errorf("error getting tags for articles for RSS feed: %v", err)
|
||||||
|
@ -521,9 +521,16 @@ func ShowPublishedArticles(c *b.Config, db *b.DB, s *b.CookieStore) http.Handler
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
filteredArticles := make([]*b.Article, 0)
|
||||||
|
for _, article := range publishedArticles {
|
||||||
|
if article.Title != "Autogenerated cpolis Issue Article" {
|
||||||
|
filteredArticles = append(filteredArticles, article)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
tmpl, err := template.ParseFiles(c.WebDir + "/templates/published-articles.html")
|
tmpl, err := template.ParseFiles(c.WebDir + "/templates/published-articles.html")
|
||||||
tmpl = template.Must(tmpl, err)
|
tmpl = template.Must(tmpl, err)
|
||||||
tmpl.ExecuteTemplate(w, "page-content", publishedArticles)
|
tmpl.ExecuteTemplate(w, "page-content", filteredArticles)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user