diff options
| author | Mark Otto <[email protected]> | 2013-07-19 14:08:16 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-07-19 14:08:16 -0700 |
| commit | f25d8c008041bbc6a008fab92915ca0073941ff0 (patch) | |
| tree | 4eb90b045f79db9f82fd691dc78f097cb8c3a44e /_layouts/default.html | |
| parent | 4b0fa356f3c00c850ec56815f8a8e07eb927c960 (diff) | |
| download | bootstrap-f25d8c008041bbc6a008fab92915ca0073941ff0.tar.xz bootstrap-f25d8c008041bbc6a008fab92915ca0073941ff0.zip | |
hacky way of not showing ads or analytics in local dev
Diffstat (limited to '_layouts/default.html')
| -rw-r--r-- | _layouts/default.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/_layouts/default.html b/_layouts/default.html index 30a261ce8..ede47203a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -15,7 +15,9 @@ <div class="container"> <h1>{{ page.title }}</h1> <p>{{ page.lead }}</p> - {% include ads.html %} + {% unless site.port != "9001" %} + {% include ads.html %} + {% endunless %} </div> </div> |
