diff --git a/adjustment.go b/adjustment.go
index 07aa72922..d809f61d5 100644
--- a/adjustment.go
+++ b/adjustment.go
@@ -105,13 +105,17 @@ func postAdjustment() {
htmlString = strings.Replace(htmlString, oldTitle, newTitle, -1)
// ==== adjust meta for SEO purpose
- metaToFind := ``
metaReplacement := ""
if isLandingPage {
metaReplacement = ``
}
- metaReplacement = metaReplacement + ``
- htmlString = strings.Replace(htmlString, metaToFind, metaReplacement, -1)
+ htmlString = strings.Replace(htmlString, ``, metaReplacement, -1)
+
+ // ==== google ads
+ googleAdsToFind := ``
+ // googleAdsReplacement := `` + googleAdsToFind
+ googleAdsReplacement := `` + infoBannerToFind
htmlString = strings.Replace(htmlString, infoBannerToFind, infoBannerReplacement, -1)