diff --git a/themes/colorbox/static/css/base.scss b/examples/themes/colorbox/static/css/base.scss similarity index 100% rename from themes/colorbox/static/css/base.scss rename to examples/themes/colorbox/static/css/base.scss diff --git a/themes/colorbox/static/css/colorbox.scss b/examples/themes/colorbox/static/css/colorbox.scss similarity index 100% rename from themes/colorbox/static/css/colorbox.scss rename to examples/themes/colorbox/static/css/colorbox.scss diff --git a/themes/colorbox/static/css/layout.scss b/examples/themes/colorbox/static/css/layout.scss similarity index 100% rename from themes/colorbox/static/css/layout.scss rename to examples/themes/colorbox/static/css/layout.scss diff --git a/themes/colorbox/static/css/skeleton.scss b/examples/themes/colorbox/static/css/skeleton.scss similarity index 100% rename from themes/colorbox/static/css/skeleton.scss rename to examples/themes/colorbox/static/css/skeleton.scss diff --git a/themes/colorbox/static/css/style.min.css b/examples/themes/colorbox/static/css/style.min.css similarity index 100% rename from themes/colorbox/static/css/style.min.css rename to examples/themes/colorbox/static/css/style.min.css diff --git a/themes/colorbox/static/css/style.scss b/examples/themes/colorbox/static/css/style.scss similarity index 100% rename from themes/colorbox/static/css/style.scss rename to examples/themes/colorbox/static/css/style.scss diff --git a/themes/colorbox/static/images/controls.png b/examples/themes/colorbox/static/images/controls.png similarity index 100% rename from themes/colorbox/static/images/controls.png rename to examples/themes/colorbox/static/images/controls.png diff --git a/themes/colorbox/static/images/loading.gif b/examples/themes/colorbox/static/images/loading.gif similarity index 100% rename from themes/colorbox/static/images/loading.gif rename to examples/themes/colorbox/static/images/loading.gif diff --git a/themes/colorbox/static/js/jquery-1.10.2.min.js b/examples/themes/colorbox/static/js/jquery-1.10.2.min.js similarity index 100% rename from themes/colorbox/static/js/jquery-1.10.2.min.js rename to examples/themes/colorbox/static/js/jquery-1.10.2.min.js diff --git a/themes/colorbox/static/js/jquery.colorbox.min.js b/examples/themes/colorbox/static/js/jquery.colorbox.min.js similarity index 100% rename from themes/colorbox/static/js/jquery.colorbox.min.js rename to examples/themes/colorbox/static/js/jquery.colorbox.min.js diff --git a/themes/colorbox/templates/album.html b/examples/themes/colorbox/templates/album.html similarity index 100% rename from themes/colorbox/templates/album.html rename to examples/themes/colorbox/templates/album.html diff --git a/themes/galleria/static/css/galleria.classic.css b/examples/themes/galleria/static/css/galleria.classic.css similarity index 100% rename from themes/galleria/static/css/galleria.classic.css rename to examples/themes/galleria/static/css/galleria.classic.css diff --git a/themes/galleria/static/css/normalize.scss b/examples/themes/galleria/static/css/normalize.scss similarity index 100% rename from themes/galleria/static/css/normalize.scss rename to examples/themes/galleria/static/css/normalize.scss diff --git a/themes/galleria/static/css/style.min.css b/examples/themes/galleria/static/css/style.min.css similarity index 100% rename from themes/galleria/static/css/style.min.css rename to examples/themes/galleria/static/css/style.min.css diff --git a/themes/galleria/static/css/style.scss b/examples/themes/galleria/static/css/style.scss similarity index 100% rename from themes/galleria/static/css/style.scss rename to examples/themes/galleria/static/css/style.scss diff --git a/themes/galleria/static/img/classic-loader.gif b/examples/themes/galleria/static/img/classic-loader.gif similarity index 100% rename from themes/galleria/static/img/classic-loader.gif rename to examples/themes/galleria/static/img/classic-loader.gif diff --git a/themes/galleria/static/img/classic-map.png b/examples/themes/galleria/static/img/classic-map.png similarity index 100% rename from themes/galleria/static/img/classic-map.png rename to examples/themes/galleria/static/img/classic-map.png diff --git a/themes/galleria/static/img/empty.png b/examples/themes/galleria/static/img/empty.png similarity index 100% rename from themes/galleria/static/img/empty.png rename to examples/themes/galleria/static/img/empty.png diff --git a/themes/galleria/static/js/galleria-1.3.5.min.js b/examples/themes/galleria/static/js/galleria-1.3.5.min.js similarity index 100% rename from themes/galleria/static/js/galleria-1.3.5.min.js rename to examples/themes/galleria/static/js/galleria-1.3.5.min.js diff --git a/themes/galleria/static/js/galleria.classic.min.js b/examples/themes/galleria/static/js/galleria.classic.min.js similarity index 100% rename from themes/galleria/static/js/galleria.classic.min.js rename to examples/themes/galleria/static/js/galleria.classic.min.js diff --git a/themes/galleria/static/js/galleria.history.min.js b/examples/themes/galleria/static/js/galleria.history.min.js similarity index 100% rename from themes/galleria/static/js/galleria.history.min.js rename to examples/themes/galleria/static/js/galleria.history.min.js diff --git a/themes/galleria/static/js/jquery-1.11.1.min.js b/examples/themes/galleria/static/js/jquery-1.11.1.min.js similarity index 100% rename from themes/galleria/static/js/jquery-1.11.1.min.js rename to examples/themes/galleria/static/js/jquery-1.11.1.min.js diff --git a/themes/galleria/templates/index.html b/examples/themes/galleria/templates/index.html similarity index 100% rename from themes/galleria/templates/index.html rename to examples/themes/galleria/templates/index.html diff --git a/themes/Makefile b/themes/Makefile deleted file mode 100644 index bdbef71..0000000 --- a/themes/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -COLORBOX_PATH=colorbox/static/css -GALLERIA_PATH=galleria/static/css - -all: - sass $(COLORBOX_PATH)/style.scss:$(COLORBOX_PATH)/style.min.css --style compressed - sass $(GALLERIA_PATH)/style.scss:$(GALLERIA_PATH)/style.min.css --style compressed - -colorbox: - sass --watch $(COLORBOX_PATH)/style.scss:$(COLORBOX_PATH)/style.min.css \ - --style compressed - -galleria: - sass --watch $(GALLERIA_PATH)/style.scss:$(GALLERIA_PATH)/style.min.css \ - --style compressed - -.PHONY: colorbox galleria