From 10eb0411997076267db4de0406d3e539e9f2b897 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 17 Nov 2015 10:35:08 -0700 Subject: [PATCH] Remove old example template --- config/examples/example.html | 87 ------------------------------------ config/examples/readme.md | 2 - 2 files changed, 89 deletions(-) delete mode 100644 config/examples/example.html diff --git a/config/examples/example.html b/config/examples/example.html deleted file mode 100644 index 457efb51d5..0000000000 --- a/config/examples/example.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - {{{ extraHead.local }}} - {{{ css.tag }}} - - {{ title }} - - - - - -
- - {{{ contents }}} - -
-
-

{{ title }}

-

{{ shortdesc }}

-
{{ md docs }}
-
{{ tags }}
- -
-
- -
-
- Copy - Edit -
-
- - - - - -
-
<!DOCTYPE html>
-<html>
-<head>
-<title>{{ title }}</title>
-<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
-<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
-<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
-<link rel="stylesheet" href="http://openlayers.org/en/v{{ olVersion }}/css/ol.css" type="text/css">
-<script src="http://openlayers.org/en/v{{ olVersion }}/build/ol.js"></script>
-{{ extraHead.remote }}
-{{#if css.source}}
-<style>
-{{ css.source }}
-</style>
-{{/if}}
-</head>
-<body>
-<div class="container-fluid">
-
-{{ contents }}
-</div>
-<script>
-{{ js.source }}
-</script>
-</body>
-</html>
-
-
- - - - - - {{{ js.tag }}} - - - diff --git a/config/examples/readme.md b/config/examples/readme.md index e3bf64c9db..8159182b08 100644 --- a/config/examples/readme.md +++ b/config/examples/readme.md @@ -16,6 +16,4 @@ To enable this, examples have the following, not needed in application code: * html files load `resources/common.js` and some scripts use `common.getRendererFromQueryString()` to set the map renderer; application code would not need these - * in addition, examples use Twitter Bootstrap and jQuery; this is of course not a requirement - you may use whichever presentation/helper libraries you wish - At the bottom of each example generated in the `build/examples` folder, a modified version of its source code is shown. That modified version can be run standalone and is usually used as starting point for users to extend examples into their own application.