From 281c9af2b38f738e2044f65f576d781060f81d21 Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Fri, 28 Aug 2020 14:12:23 -0400 Subject: [PATCH] adding privacy policy --- Resources/Views/privacy-policy.md | 4 +++- Sources/OrchardNestServer/HTML.swift | 9 ++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Resources/Views/privacy-policy.md b/Resources/Views/privacy-policy.md index b4e208d..d31ef4f 100644 --- a/Resources/Views/privacy-policy.md +++ b/Resources/Views/privacy-policy.md @@ -4,6 +4,8 @@ description: Privacy Policy # Privacy Policy +Currently this privacy policy is rather simple. If you have any further questions, please see [our support page.](/support) + ## Gathering Articles The content from this site are entirely generated from the listing on the [iOS Dev Directory](https://iosdevdirectory.com/). If you are the owner of a site which is listed here and would like it to be removed, see the details [here on how to remove yourself from that list.](https://iosdevdirectory.com/privacy/) If you wish to removed only from OrchardNest, then you can [file an issue here.](https://github.com/brightdigit/OrchardNest/issues/new?labels=remove-site) @@ -12,4 +14,4 @@ For more information, check out [our support page.](/support) ## Tracking Traffic - +[Google Analytics](https://analytics.google.com/analytics/web/) is used to to gather basic analytics data. No other analytics, trackers or cookies are used. diff --git a/Sources/OrchardNestServer/HTML.swift b/Sources/OrchardNestServer/HTML.swift index b368081..9e720f2 100644 --- a/Sources/OrchardNestServer/HTML.swift +++ b/Sources/OrchardNestServer/HTML.swift @@ -226,7 +226,14 @@ public extension Node where Context == HTML.BodyContext { .text("Bright Digit, LLC") ), .text(". Copyright ©"), - .year() + .year(), + .text(". ") + ), + .span( + .a( + .href("/privacy-policy"), + .text("Privacy Policy") + ) ) ) )