diff --git a/_config.yml b/_config.yml index 46b00296f..9d0f71d4f 100644 --- a/_config.yml +++ b/_config.yml @@ -43,7 +43,12 @@ owner: google_analytics: UA-39365944-7 google_verify: # https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here -bing_verify: +bing_verify: + +# Mailchimp PopUp Subscribers (mailchimp: true = all pages, or set page by page) +mailchimp: true +mailchimp_uuid: YOUR_UUID +mailchimp_lid: YOUR_LID # Links to include in footer navigation # For external links add external: true diff --git a/_includes/scripts.html b/_includes/scripts.html index 32cb62366..f63912e1e 100644 --- a/_includes/scripts.html +++ b/_includes/scripts.html @@ -86,4 +86,9 @@ })(); {% endif %} + +{% if page.mailchimp or site.mailchimp %} + +{% endif %} + {% if page.comments %}{% include disqus_comments.html %}{% endif %} \ No newline at end of file diff --git a/documentation.md b/documentation.md index 20de84e8c..11c7cd1ef 100644 --- a/documentation.md +++ b/documentation.md @@ -89,6 +89,12 @@ google_verify: # https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here bing_verify: +# Mailchimp PopUp to Subscribers +- mailchimp: +- mailchimp_uuid: +- mailchimp_lid: + + # Links to include in top navigation # For external links add external: true links: @@ -335,6 +341,21 @@ Including a link to your Google+ profile has the added benefit of displaying [Go Your Google Analytics ID goes here along with meta tags for [Google Webmaster Tools](http://support.google.com/webmasters/bin/answer.py?hl=en&answer=35179) and [Bing Webmaster Tools](https://ssl.bing.com/webmaster/configure/verify/ownershi) site verification. +#### Mailchimp PopUp to get Subscribers + +You need: + +1 - Create a list (to your future subscribers) in mailchimp.com (https://us10.admin.mailchimp.com/lists/). + +2 - Create a sign up form (PopUp type) inside of the list page. You can customize your PopUp. Generate the embedded code and get the UUID and LID fields on the generated code. + +3 - Put your UUID and LID code in _config.yml (mailchimp_uuid and mailchimp_lid). + +4 - Put (mailchimp: true) in _config.yml if you want the the PopUp appear in all screens (don't worry, appear just a time by user or when user delete cookies) or put (mailchimp: true) just on the page that you want the PopUp. + +[Optional - Send automatic email (one time by day or week) about new post] +5 - Go to https://us10.admin.mailchimp.com/campaigns/, create a new campaign of the type Rss campaign. Just configurate to point for www.youdomain.com/feed.xml, choice the created list and a template. + #### Top Navigation Links Edit page/post titles and URLs to include in the site's navigation. For external links add `external: true`.