(app *App)
| 93 | } |
| 94 | |
| 95 | func defaultContactPage(app *App) string { |
| 96 | c, err := app.db.GetCollectionByID(1) |
| 97 | if err != nil { |
| 98 | return "" |
| 99 | } |
| 100 | return `_` + app.cfg.App.SiteName + `_ is administered by: [**` + c.Alias + `**](/` + c.Alias + `/). |
| 101 | |
| 102 | Contact them at this email address: _EMAIL GOES HERE_. |
| 103 | |
| 104 | You can also reach them here...` |
| 105 | } |
| 106 | |
| 107 | func defaultPrivacyPolicy(cfg *config.Config) string { |
| 108 | return `[WriteFreely](https://writefreely.org), the software that powers this site, is built to enforce your right to privacy by default. |
no test coverage detected