From: Michael Tremer Date: Thu, 12 Jul 2018 15:20:30 +0000 (+0100) Subject: Introduce autotools X-Git-Url: http://git.ipfire.org/?p=ipfire.org.git;a=commitdiff_plain;h=a292b0f87add1cb0370ea709c7e8ea3730632c46 Introduce autotools Signed-off-by: Michael Tremer --- diff --git a/.gitignore b/.gitignore index 20ae2de7..768ef039 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,19 @@ /.vscode -/webapp.conf -*.mo +/aclocal.m4 +/autom4te.cache +/build-aux +/configure +/config.* +/m4 +/src/scss/main.css +/src/scripts/ipfire.org +/src/scripts/ipfire.org-webapp +/src/systemd/ipfire.org-webapp-*.service +/ipfire.org.conf.sample +Makefile +Makefile.in +stamp-* +*.bak *.py[co] +*.tar.gz +*.zip diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..65441b73 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "src/bootstrap"] + path = src/bootstrap + url = https://github.com/twbs/bootstrap.git diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 00000000..4fc0db05 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,199 @@ +#!/usr/bin/make + +AM_MAKEFLAGS = --no-print-directory +AUTOMAKE_OPTIONS = color-tests + +# remove target it the command fails +.DELETE_ON_ERROR: + +# keep itermediate files +.SECONDARY: + +pythondir = $(pyexecdir) + +configsdir = $(sysconfdir)/ipfire.org +crondir = $(sysconfdir)/cron.d + +CLEANFILES = +DISTCLEANFILES = +EXTRA_DIST = +INSTALL_DIRS = +noinst_DATA = + +DISTCHECK_CONFIGURE_FLAGS = \ + --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir) + +# ------------------------------------------------------------------------------ + +bin_SCRIPTS = \ + src/scripts/ipfire.org \ + src/scripts/ipfire.org-webapp + +EXTRA_DIST += \ + src/scripts/ipfire.org.in \ + src/scripts/ipfire.org-webapp.in + +CLEANFILES += \ + src/scripts/ipfire.org \ + src/scripts/ipfire.org-webapp + +configs_DATA = \ + ipfire.org.conf.sample + +EXTRA_DIST += \ + ipfire.org.conf.sample.in + +CLEANFILES += \ + ipfire.org.conf.sample + +backend_PYTHON = \ + src/backend/__init__.py \ + src/backend/accounts.py \ + src/backend/ads.py \ + src/backend/asterisk.py \ + src/backend/base.py \ + src/backend/countries.py \ + src/backend/database.py \ + src/backend/fireinfo.py \ + src/backend/geoip.py \ + src/backend/iuse.py \ + src/backend/memcached.py \ + src/backend/mirrors.py \ + src/backend/misc.py \ + src/backend/netboot.py \ + src/backend/news.py \ + src/backend/nopaste.py \ + src/backend/planet.py \ + src/backend/releases.py \ + src/backend/settings.py \ + src/backend/talk.py \ + src/backend/tracker.py \ + src/backend/util.py \ + src/backend/zeiterfassung.py + +backenddir = $(pythondir)/ipfire + +# ------------------------------------------------------------------------------ + +web_PYTHON = \ + src/web/__init__.py \ + src/web/handlers.py \ + src/web/handlers_accounts.py \ + src/web/handlers_admin.py \ + src/web/handlers_base.py \ + src/web/handlers_boot.py \ + src/web/handlers_download.py \ + src/web/handlers_fireinfo.py \ + src/web/handlers_iuse.py \ + src/web/handlers_mirrors.py \ + src/web/handlers_news.py \ + src/web/handlers_nopaste.py \ + src/web/handlers_planet.py \ + src/web/handlers_rss.py \ + src/web/handlers_talk.py \ + src/web/ui_modules.py + +webdir = $(backenddir)/web + +# ------------------------------------------------------------------------------ + +# TODO install the base for now and add all other templates later + +templates_DATA = \ + src/templates/base.html + +templatesdir = $(datadir)/templates + +# ------------------------------------------------------------------------------ + +SCSS_FILES = \ + src/scss/style.scss \ + src/scss/_buttons.scss \ + src/scss/_donation.scss \ + src/scss/_fonts.scss \ + src/scss/_icons.scss \ + src/scss/_nav.scss + +EXTRA_DIST += \ + src/templates/messages/main.scss + +CLEANFILES += \ + src/templates/messages/main.css + +static_DATA = \ + src/scss/main.css + +CLEANFILES += \ + src/scss/main.css + +EXTRA_DIST += \ + $(SCSS_FILES) + +staticdir = $(datadir)/static + +static_fonts_DATA = \ + # TODO + +static_fontsdir = $(staticdir)/fonts + +static_images_DATA = \ + # TODO + +static_imagesdir = $(staticdir)/images + +static_js_DATA = \ + # TODO + +static_jsdir = $(staticdir)/js + +# ------------------------------------------------------------------------------ + +dist_cron_DATA = \ + src/crontab/ipfire.org + +# ------------------------------------------------------------------------------ + +if HAVE_SYSTEMD +systemdsystemunit_DATA = \ + src/systemd/ipfire.org-webapp-1.service \ + src/systemd/ipfire.org-webapp-2.service \ + src/systemd/ipfire.org-webapp-3.service \ + src/systemd/ipfire.org-webapp-4.service + +CLEANFILES += \ + $(systemdsystemunit_DATA) + +INSTALL_DIRS += \ + $(systemdsystemunitdir) +endif + +EXTRA_DIST += \ + src/systemd/ipfire.org-webapp-1.service.in \ + src/systemd/ipfire.org-webapp-3.service.in \ + src/systemd/ipfire.org-webapp-3.service.in \ + src/systemd/ipfire.org-webapp-4.service.in + +# ------------------------------------------------------------------------------ + +substitutions = \ + '|PACKAGE_NAME=$(PACKAGE_NAME)|' \ + '|PACKAGE_VERSION=$(PACKAGE_VERSION)|' \ + '|configsdir=$(configsdir)|' \ + '|bindir=$(bindir)|' \ + '|datadir=$(datadir)|' + +SED_PROCESS = \ + $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ + $(SED) $(subst '|,-e 's|@,$(subst =,\@|,$(subst |',|g',$(substitutions)))) \ + < $< > $@ + +%: %.in Makefile + $(SED_PROCESS) + +%.css: %.scss Makefile + $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ + $(SASSC) --style compressed $< > $@ + +src/scss/main.css: $(SCSS_FILES) Makefile + $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ + $(SASSC) --style compressed $< > $@ diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 00000000..c08fadf9 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +autoreconf --force --install --symlink diff --git a/configure.ac b/configure.ac new file mode 100644 index 00000000..92a827d2 --- /dev/null +++ b/configure.ac @@ -0,0 +1,85 @@ +AC_PREREQ([2.64]) + +AC_INIT([ipfire.org], + [000], + [michael.tremer@ipfire.org], + [ipfire.org], + [https://www.ipfire.org/]) + +AC_CONFIG_AUX_DIR([build-aux]) + +AC_PREFIX_DEFAULT([/usr]) + +AM_INIT_AUTOMAKE([ + foreign + 1.11 + -Wall + -Wno-portability + silent-rules + tar-pax + subdir-objects +]) +AM_SILENT_RULES([yes]) + +AC_PROG_LN_S +AC_PROG_MKDIR_P +AC_PROG_SED + +# Python +AM_PATH_PYTHON([2.7]) + +# scss +AC_CHECK_PROG(SASSC, [sassc], [sassc]) + +# ------------------------------------------------------------------------------ + +AC_ARG_WITH([systemd], + AS_HELP_STRING([--with-systemd], [Enable systemd support.]) +) + +AS_IF([test "x$with_systemd" != "xno"], + [PKG_CHECK_MODULES(systemd, [libsystemd], + [have_systemd=yes], [have_systemd=no])], + [have_systemd=no] +) + +AS_IF([test "x$have_systemd" = "xyes"], + [AC_MSG_CHECKING([for systemd system unit directory]) + AC_ARG_WITH([systemdsystemunitdir], + AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]), + [], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)] + ) + + AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) + + if test -n "$systemdsystemunitdir" -a "x$systemdsystemunitdir" != xno; then + AC_MSG_RESULT([$systemdsystemunitdir]) + else + AC_MSG_ERROR([not found (try --with-systemdsystemunitdir)]) + fi + ], + [AS_IF([test "x$with_systemd" = "xyes"], + [AC_MSG_ERROR([Systemd support is enabled but no systemd has been found.]) + ]) +]) + +AM_CONDITIONAL(HAVE_SYSTEMD, [test "x$have_systemd" = "xyes"]) + +datadir="${datadir}/ipfire.org" +localedir="${datadir}/translations" + +AC_CONFIG_FILES([ + Makefile +]) + +AC_OUTPUT +AC_MSG_RESULT([ + ${PACKAGE_NAME} ${VERSION} + + prefix: ${prefix} + sysconfdir: ${sysconfdir} + datadir: ${datadir} + localedir: ${localedir} + + systemd support ${have_systemd} +]) diff --git a/webapp.conf.example b/ipfire.org.conf.sample.in similarity index 100% rename from webapp.conf.example rename to ipfire.org.conf.sample.in diff --git a/webapp/backend/__init__.py b/src/backend/__init__.py similarity index 100% rename from webapp/backend/__init__.py rename to src/backend/__init__.py diff --git a/webapp/backend/accounts.py b/src/backend/accounts.py similarity index 100% rename from webapp/backend/accounts.py rename to src/backend/accounts.py diff --git a/webapp/backend/ads.py b/src/backend/ads.py similarity index 100% rename from webapp/backend/ads.py rename to src/backend/ads.py diff --git a/webapp/backend/asterisk.py b/src/backend/asterisk.py similarity index 100% rename from webapp/backend/asterisk.py rename to src/backend/asterisk.py diff --git a/webapp/backend/base.py b/src/backend/base.py similarity index 100% rename from webapp/backend/base.py rename to src/backend/base.py diff --git a/webapp/backend/countries.py b/src/backend/countries.py similarity index 100% rename from webapp/backend/countries.py rename to src/backend/countries.py diff --git a/webapp/backend/database.py b/src/backend/database.py similarity index 100% rename from webapp/backend/database.py rename to src/backend/database.py diff --git a/webapp/backend/fireinfo.py b/src/backend/fireinfo.py similarity index 100% rename from webapp/backend/fireinfo.py rename to src/backend/fireinfo.py diff --git a/webapp/backend/geoip.py b/src/backend/geoip.py similarity index 100% rename from webapp/backend/geoip.py rename to src/backend/geoip.py diff --git a/webapp/backend/iuse.py b/src/backend/iuse.py similarity index 100% rename from webapp/backend/iuse.py rename to src/backend/iuse.py diff --git a/webapp/backend/memcached.py b/src/backend/memcached.py similarity index 100% rename from webapp/backend/memcached.py rename to src/backend/memcached.py diff --git a/webapp/backend/mirrors.py b/src/backend/mirrors.py similarity index 100% rename from webapp/backend/mirrors.py rename to src/backend/mirrors.py diff --git a/webapp/backend/misc.py b/src/backend/misc.py similarity index 100% rename from webapp/backend/misc.py rename to src/backend/misc.py diff --git a/webapp/backend/netboot.py b/src/backend/netboot.py similarity index 100% rename from webapp/backend/netboot.py rename to src/backend/netboot.py diff --git a/webapp/backend/news.py b/src/backend/news.py similarity index 100% rename from webapp/backend/news.py rename to src/backend/news.py diff --git a/webapp/backend/nopaste.py b/src/backend/nopaste.py similarity index 100% rename from webapp/backend/nopaste.py rename to src/backend/nopaste.py diff --git a/webapp/backend/planet.py b/src/backend/planet.py similarity index 100% rename from webapp/backend/planet.py rename to src/backend/planet.py diff --git a/webapp/backend/releases.py b/src/backend/releases.py similarity index 100% rename from webapp/backend/releases.py rename to src/backend/releases.py diff --git a/webapp/backend/settings.py b/src/backend/settings.py similarity index 100% rename from webapp/backend/settings.py rename to src/backend/settings.py diff --git a/webapp/backend/talk.py b/src/backend/talk.py similarity index 100% rename from webapp/backend/talk.py rename to src/backend/talk.py diff --git a/webapp/backend/tracker.py b/src/backend/tracker.py similarity index 100% rename from webapp/backend/tracker.py rename to src/backend/tracker.py diff --git a/webapp/backend/util.py b/src/backend/util.py similarity index 100% rename from webapp/backend/util.py rename to src/backend/util.py diff --git a/webapp/backend/zeiterfassung.py b/src/backend/zeiterfassung.py similarity index 100% rename from webapp/backend/zeiterfassung.py rename to src/backend/zeiterfassung.py diff --git a/src/bootstrap b/src/bootstrap new file mode 160000 index 00000000..a49f5cab --- /dev/null +++ b/src/bootstrap @@ -0,0 +1 @@ +Subproject commit a49f5cab6fb2e106113e5ab59fdcecc7f9349301 diff --git a/src/crontab/ipfire.org b/src/crontab/ipfire.org new file mode 100644 index 00000000..1bb8bf6d --- /dev/null +++ b/src/crontab/ipfire.org @@ -0,0 +1 @@ +# empty diff --git a/robots.txt b/src/robots.txt similarity index 100% rename from robots.txt rename to src/robots.txt diff --git a/webapp.py b/src/scripts/ipfire.org-webapp.in similarity index 86% rename from webapp.py rename to src/scripts/ipfire.org-webapp.in index 711aa237..588031da 100755 --- a/webapp.py +++ b/src/scripts/ipfire.org-webapp.in @@ -11,7 +11,7 @@ def run(): tornado.options.parse_command_line() # Initialize application - app = Application("webapp.conf") + app = Application("@configsdir@/@PACKAGE_NAME@.conf") app.listen(tornado.options.options.port) # Launch IOLoop diff --git a/manager.py b/src/scripts/ipfire.org.in similarity index 100% rename from manager.py rename to src/scripts/ipfire.org.in diff --git a/static/scss/Bootstrap Notes.txt b/src/scss/Bootstrap Notes.txt similarity index 100% rename from static/scss/Bootstrap Notes.txt rename to src/scss/Bootstrap Notes.txt diff --git a/static/scss/_buttons.scss b/src/scss/_buttons.scss similarity index 100% rename from static/scss/_buttons.scss rename to src/scss/_buttons.scss diff --git a/static/scss/_donation.scss b/src/scss/_donation.scss similarity index 100% rename from static/scss/_donation.scss rename to src/scss/_donation.scss diff --git a/static/scss/_fonts.scss b/src/scss/_fonts.scss similarity index 100% rename from static/scss/_fonts.scss rename to src/scss/_fonts.scss diff --git a/static/scss/_icons.scss b/src/scss/_icons.scss similarity index 100% rename from static/scss/_icons.scss rename to src/scss/_icons.scss diff --git a/static/scss/_nav.scss b/src/scss/_nav.scss similarity index 100% rename from static/scss/_nav.scss rename to src/scss/_nav.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/.editorconfig b/src/scss/bootstrap-4.0.0-alpha.6/.editorconfig similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/.editorconfig rename to src/scss/bootstrap-4.0.0-alpha.6/.editorconfig diff --git a/static/scss/bootstrap-4.0.0-alpha.6/.eslintignore b/src/scss/bootstrap-4.0.0-alpha.6/.eslintignore similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/.eslintignore rename to src/scss/bootstrap-4.0.0-alpha.6/.eslintignore diff --git a/static/scss/bootstrap-4.0.0-alpha.6/.gitattributes b/src/scss/bootstrap-4.0.0-alpha.6/.gitattributes similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/.gitattributes rename to src/scss/bootstrap-4.0.0-alpha.6/.gitattributes diff --git a/static/scss/bootstrap-4.0.0-alpha.6/.gitignore b/src/scss/bootstrap-4.0.0-alpha.6/.gitignore similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/.gitignore rename to src/scss/bootstrap-4.0.0-alpha.6/.gitignore diff --git a/static/scss/bootstrap-4.0.0-alpha.6/.hound.yml b/src/scss/bootstrap-4.0.0-alpha.6/.hound.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/.hound.yml rename to src/scss/bootstrap-4.0.0-alpha.6/.hound.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/.houndignore b/src/scss/bootstrap-4.0.0-alpha.6/.houndignore similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/.houndignore rename to src/scss/bootstrap-4.0.0-alpha.6/.houndignore diff --git a/static/scss/bootstrap-4.0.0-alpha.6/.travis.yml b/src/scss/bootstrap-4.0.0-alpha.6/.travis.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/.travis.yml rename to src/scss/bootstrap-4.0.0-alpha.6/.travis.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/CHANGELOG.md b/src/scss/bootstrap-4.0.0-alpha.6/CHANGELOG.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/CHANGELOG.md rename to src/scss/bootstrap-4.0.0-alpha.6/CHANGELOG.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/CNAME b/src/scss/bootstrap-4.0.0-alpha.6/CNAME similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/CNAME rename to src/scss/bootstrap-4.0.0-alpha.6/CNAME diff --git a/static/scss/bootstrap-4.0.0-alpha.6/CONTRIBUTING.md b/src/scss/bootstrap-4.0.0-alpha.6/CONTRIBUTING.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/CONTRIBUTING.md rename to src/scss/bootstrap-4.0.0-alpha.6/CONTRIBUTING.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/Gemfile b/src/scss/bootstrap-4.0.0-alpha.6/Gemfile similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/Gemfile rename to src/scss/bootstrap-4.0.0-alpha.6/Gemfile diff --git a/static/scss/bootstrap-4.0.0-alpha.6/Gemfile.lock b/src/scss/bootstrap-4.0.0-alpha.6/Gemfile.lock similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/Gemfile.lock rename to src/scss/bootstrap-4.0.0-alpha.6/Gemfile.lock diff --git a/static/scss/bootstrap-4.0.0-alpha.6/Gruntfile.js b/src/scss/bootstrap-4.0.0-alpha.6/Gruntfile.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/Gruntfile.js rename to src/scss/bootstrap-4.0.0-alpha.6/Gruntfile.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/ISSUE_TEMPLATE.md b/src/scss/bootstrap-4.0.0-alpha.6/ISSUE_TEMPLATE.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/ISSUE_TEMPLATE.md rename to src/scss/bootstrap-4.0.0-alpha.6/ISSUE_TEMPLATE.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/LICENSE b/src/scss/bootstrap-4.0.0-alpha.6/LICENSE similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/LICENSE rename to src/scss/bootstrap-4.0.0-alpha.6/LICENSE diff --git a/static/scss/bootstrap-4.0.0-alpha.6/README.md b/src/scss/bootstrap-4.0.0-alpha.6/README.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/README.md rename to src/scss/bootstrap-4.0.0-alpha.6/README.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/_config.yml b/src/scss/bootstrap-4.0.0-alpha.6/_config.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/_config.yml rename to src/scss/bootstrap-4.0.0-alpha.6/_config.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/bower.json b/src/scss/bootstrap-4.0.0-alpha.6/bower.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/bower.json rename to src/scss/bootstrap-4.0.0-alpha.6/bower.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/composer.json b/src/scss/bootstrap-4.0.0-alpha.6/composer.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/composer.json rename to src/scss/bootstrap-4.0.0-alpha.6/composer.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-grid.css b/src/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-grid.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-grid.css rename to src/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-grid.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-reboot.css b/src/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-reboot.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-reboot.css rename to src/scss/bootstrap-4.0.0-alpha.6/css/bootstrap-reboot.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/css/bootstrap.css b/src/scss/bootstrap-4.0.0-alpha.6/css/bootstrap.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/css/bootstrap.css rename to src/scss/bootstrap-4.0.0-alpha.6/css/bootstrap.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css.map b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css.map b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-grid.min.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css.map b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css.map b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap-reboot.min.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css.map b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css.map b/src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/dist/css/bootstrap.min.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.js b/src/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.js rename to src/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.min.js b/src/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/dist/js/bootstrap.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/.htmlhintrc b/src/scss/bootstrap-4.0.0-alpha.6/docs/.htmlhintrc similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/.htmlhintrc rename to src/scss/bootstrap-4.0.0-alpha.6/docs/.htmlhintrc diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/CNAME b/src/scss/bootstrap-4.0.0-alpha.6/docs/CNAME similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/CNAME rename to src/scss/bootstrap-4.0.0-alpha.6/docs/CNAME diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/LICENSE b/src/scss/bootstrap-4.0.0-alpha.6/docs/LICENSE similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/LICENSE rename to src/scss/bootstrap-4.0.0-alpha.6/docs/LICENSE diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_data/breakpoints.yml b/src/scss/bootstrap-4.0.0-alpha.6/docs/_data/breakpoints.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_data/breakpoints.yml rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_data/breakpoints.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-bugs.yml b/src/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-bugs.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-bugs.yml rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-bugs.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-features.yml b/src/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-features.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-features.yml rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_data/browser-features.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_data/core-team.yml b/src/scss/bootstrap-4.0.0-alpha.6/docs/_data/core-team.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_data/core-team.yml rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_data/core-team.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_data/nav.yml b/src/scss/bootstrap-4.0.0-alpha.6/docs/_data/nav.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_data/nav.yml rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_data/nav.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_data/showcase.yml b/src/scss/bootstrap-4.0.0-alpha.6/docs/_data/showcase.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_data/showcase.yml rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_data/showcase.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_data/translations.yml b/src/scss/bootstrap-4.0.0-alpha.6/docs/_data/translations.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_data/translations.yml rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_data/translations.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/ads.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/ads.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/ads.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/ads.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/callout-warning-color-assistive-technologies.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/callout-warning-color-assistive-technologies.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/callout-warning-color-assistive-technologies.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/callout-warning-color-assistive-technologies.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/footer.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/footer.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/footer.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/footer.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/header.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/header.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/header.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/header.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-docs.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-docs.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-docs.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-docs.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-home.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-home.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-home.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/nav-home.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/page-headers.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/page-headers.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/page-headers.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/page-headers.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/social.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/social.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_includes/social.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_includes/social.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/default.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/default.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/default.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/default.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/docs.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/docs.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/docs.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/docs.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/home.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/home.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/home.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/home.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/simple.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/simple.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/simple.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_layouts/simple.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bridge.rb b/src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bridge.rb similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bridge.rb rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bridge.rb diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bugify.rb b/src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bugify.rb similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bugify.rb rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/bugify.rb diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/callout.rb b/src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/callout.rb similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/callout.rb rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/callout.rb diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/highlight_alt.rb b/src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/highlight_alt.rb similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/highlight_alt.rb rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/highlight_alt.rb diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/markdown-block.rb b/src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/markdown-block.rb similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/markdown-block.rb rename to src/scss/bootstrap-4.0.0-alpha.6/docs/_plugins/markdown-block.rb diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/about/brand.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/about/brand.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/about/brand.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/about/brand.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/about/history.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/about/history.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/about/history.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/about/history.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/about/license.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/about/license.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/about/license.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/about/license.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/about/team.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/about/team.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/about/team.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/about/team.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/about/translations.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/about/translations.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/about/translations.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/about/translations.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/apple-touch-icon.png b/src/scss/bootstrap-4.0.0-alpha.6/docs/apple-touch-icon.png similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/apple-touch-icon.png rename to src/scss/bootstrap-4.0.0-alpha.6/docs/apple-touch-icon.png diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-outline.svg b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-outline.svg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-outline.svg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-outline.svg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-punchout.svg b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-punchout.svg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-punchout.svg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-punchout.svg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social-logo.png b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social-logo.png similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social-logo.png rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social-logo.png diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social.png b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social.png similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social.png rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-social.png diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-solid.svg b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-solid.svg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-solid.svg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/brand/bootstrap-solid.svg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css.map b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/css/docs.min.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/bs-themes.png b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/bs-themes.png similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/bs-themes.png rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/bs-themes.png diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/components.png b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/components.png similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/components.png rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/components.png diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/devices.png b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/devices.png similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/devices.png rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/devices.png diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-lyft.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-lyft.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-lyft.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-lyft.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-newsweek.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-newsweek.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-newsweek.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-newsweek.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-riot.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-riot.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-riot.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-riot.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-vogue.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-vogue.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-vogue.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/expo-vogue.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/sass.png b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/sass.png similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/sass.png rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/img/sass.png diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/docs.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/docs.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/docs.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/docs.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie-emulation-modes-warning.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie-emulation-modes-warning.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie-emulation-modes-warning.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie-emulation-modes-warning.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie10-viewport-bug-workaround.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie10-viewport-bug-workaround.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie10-viewport-bug-workaround.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/ie10-viewport-bug-workaround.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/src/application.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/src/application.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/src/application.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/src/application.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/anchor.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/anchor.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/anchor.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/anchor.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/clipboard.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/clipboard.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/clipboard.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/clipboard.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/holder.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/holder.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/holder.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/holder.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jekyll-search.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jekyll-search.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jekyll-search.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jekyll-search.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jquery-slim.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jquery-slim.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jquery-slim.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/jquery-slim.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/tether.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/tether.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/tether.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/js/vendor/tether.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_ads.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_ads.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_ads.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_ads.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_anchor.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_anchor.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_anchor.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_anchor.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_booticon.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_booticon.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_booticon.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_booticon.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_brand.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_brand.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_brand.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_brand.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_browser-bugs.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_browser-bugs.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_browser-bugs.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_browser-bugs.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_buttons.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_buttons.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_buttons.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_buttons.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_callouts.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_callouts.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_callouts.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_callouts.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_clipboard-js.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_clipboard-js.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_clipboard-js.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_clipboard-js.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_component-examples.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_component-examples.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_component-examples.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_component-examples.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_content.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_content.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_content.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_content.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_examples.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_examples.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_examples.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_examples.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featured-sites.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featured-sites.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featured-sites.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featured-sites.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featurettes.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featurettes.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featurettes.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_featurettes.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_footer.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_footer.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_footer.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_footer.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_masthead.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_masthead.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_masthead.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_masthead.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_nav.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_nav.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_nav.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_nav.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_page-header.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_page-header.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_page-header.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_page-header.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_responsive-tests.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_responsive-tests.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_responsive-tests.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_responsive-tests.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_sidebar.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_sidebar.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_sidebar.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_sidebar.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_skiplink.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_skiplink.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_skiplink.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_skiplink.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_syntax.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_syntax.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_syntax.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_syntax.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_team.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_team.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_team.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/_team.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/docs.scss b/src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/docs.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/docs.scss rename to src/scss/bootstrap-4.0.0-alpha.6/docs/assets/scss/docs.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/browser-bugs.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/browser-bugs.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/browser-bugs.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/browser-bugs.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/alerts.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/alerts.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/alerts.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/alerts.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/badge.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/badge.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/badge.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/badge.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/breadcrumb.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/breadcrumb.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/breadcrumb.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/breadcrumb.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/button-group.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/button-group.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/button-group.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/button-group.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/buttons.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/buttons.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/buttons.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/buttons.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/card.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/card.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/card.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/card.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/carousel.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/carousel.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/carousel.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/carousel.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/collapse.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/collapse.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/collapse.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/collapse.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/dropdowns.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/dropdowns.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/dropdowns.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/dropdowns.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/forms.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/forms.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/forms.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/forms.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/input-group.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/input-group.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/input-group.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/input-group.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/jumbotron.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/jumbotron.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/jumbotron.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/jumbotron.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/list-group.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/list-group.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/list-group.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/list-group.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/modal.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/modal.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/modal.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/modal.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/navbar.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/navbar.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/navbar.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/navbar.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/navs.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/navs.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/navs.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/navs.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/pagination.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/pagination.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/pagination.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/pagination.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/popovers.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/popovers.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/popovers.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/popovers.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/progress.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/progress.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/progress.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/progress.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/scrollspy.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/scrollspy.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/scrollspy.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/scrollspy.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/components/tooltips.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/components/tooltips.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/components/tooltips.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/components/tooltips.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/content/code.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/content/code.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/content/code.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/content/code.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/content/figures.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/content/figures.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/content/figures.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/content/figures.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/content/images.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/content/images.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/content/images.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/content/images.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/content/reboot.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/content/reboot.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/content/reboot.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/content/reboot.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/content/tables.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/content/tables.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/content/tables.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/content/tables.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/content/typography.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/content/typography.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/content/typography.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/content/typography.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css.map b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css.map b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-grid.min.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css.map b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css.map b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap-reboot.min.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css.map b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css.map b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css.map rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/css/bootstrap.min.css.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.min.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.min.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.min.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/dist/js/bootstrap.min.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/album.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/album.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/album.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/album.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/album/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/blog.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/blog.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/blog.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/blog.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/blog/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/carousel.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/carousel.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/carousel.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/carousel.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/carousel/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/cover.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/cover.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/cover.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/cover.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/cover/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/dashboard.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/dashboard.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/dashboard.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/dashboard.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/dashboard/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/grid.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/grid.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/grid.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/grid.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/grid/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/index.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/index.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/index.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/index.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/jumbotron.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/jumbotron.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/jumbotron.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/jumbotron/jumbotron.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/justified-nav.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/justified-nav.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/justified-nav.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/justified-nav/justified-nav.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/narrow-jumbotron.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/narrow-jumbotron.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/narrow-jumbotron.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/narrow-jumbotron/narrow-jumbotron.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/navbar-top-fixed.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/navbar-top-fixed.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/navbar-top-fixed.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top-fixed/navbar-top-fixed.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/navbar-top.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/navbar-top.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/navbar-top.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbar-top/navbar-top.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/navbar.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/navbar.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/navbar.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/navbars/navbar.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/offcanvas/offcanvas.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/album.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/album.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/album.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/album.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/blog.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/blog.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/blog.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/blog.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/carousel.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/carousel.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/carousel.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/carousel.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/cover.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/cover.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/cover.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/cover.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/dashboard.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/dashboard.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/dashboard.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/dashboard.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/equal-height-columns.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/equal-height-columns.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/equal-height-columns.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/equal-height-columns.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/grid.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/grid.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/grid.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/grid.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron-narrow.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron-narrow.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron-narrow.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron-narrow.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/jumbotron.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/justified-nav.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/justified-nav.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/justified-nav.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/justified-nav.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-fixed.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-fixed.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-fixed.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-fixed.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-static.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-static.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-static.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar-static.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/navbar.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/non-responsive.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/non-responsive.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/non-responsive.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/non-responsive.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/offcanvas.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/offcanvas.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/offcanvas.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/offcanvas.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sign-in.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sign-in.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sign-in.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sign-in.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/starter-template.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/starter-template.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/starter-template.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/starter-template.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer-navbar.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer-navbar.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer-navbar.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer-navbar.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/sticky-footer.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/theme.jpg b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/theme.jpg similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/theme.jpg rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/screenshots/theme.jpg diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/signin.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/signin.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/signin.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/signin/signin.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/starter-template.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/starter-template.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/starter-template.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/starter-template/starter-template.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer-navbar/sticky-footer-navbar.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/sticky-footer.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/sticky-footer.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/sticky-footer.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/sticky-footer/sticky-footer.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.css b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.css rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.js b/src/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.js rename to src/scss/bootstrap-4.0.0-alpha.6/docs/examples/tooltip-viewport/tooltip-viewport.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/extend/approach.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/extend/approach.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/extend/approach.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/extend/approach.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/extend/icon-fonts.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/extend/icon-fonts.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/extend/icon-fonts.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/extend/icon-fonts.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/extend/index.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/extend/index.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/extend/index.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/extend/index.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/favicon.ico b/src/scss/bootstrap-4.0.0-alpha.6/docs/favicon.ico similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/favicon.ico rename to src/scss/bootstrap-4.0.0-alpha.6/docs/favicon.ico diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/accessibility.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/accessibility.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/accessibility.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/accessibility.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/best-practices.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/best-practices.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/best-practices.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/best-practices.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/browsers-devices.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/browsers-devices.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/browsers-devices.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/browsers-devices.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/build-tools.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/build-tools.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/build-tools.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/build-tools.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/contents.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/contents.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/contents.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/contents.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/download.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/download.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/download.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/download.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/introduction.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/introduction.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/introduction.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/introduction.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/javascript.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/javascript.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/javascript.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/javascript.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/options.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/options.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/options.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/getting-started/options.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/index.html b/src/scss/bootstrap-4.0.0-alpha.6/docs/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/docs/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/layout/grid.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/layout/grid.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/layout/grid.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/layout/grid.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/layout/media-object.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/layout/media-object.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/layout/media-object.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/layout/media-object.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/layout/overview.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/layout/overview.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/layout/overview.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/layout/overview.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/layout/responsive-utilities.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/layout/responsive-utilities.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/layout/responsive-utilities.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/layout/responsive-utilities.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/migration.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/migration.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/migration.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/migration.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/robots.txt b/src/scss/bootstrap-4.0.0-alpha.6/docs/robots.txt similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/robots.txt rename to src/scss/bootstrap-4.0.0-alpha.6/docs/robots.txt diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/search.json b/src/scss/bootstrap-4.0.0-alpha.6/docs/search.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/search.json rename to src/scss/bootstrap-4.0.0-alpha.6/docs/search.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/borders.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/borders.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/borders.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/borders.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/clearfix.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/clearfix.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/clearfix.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/clearfix.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/close-icon.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/close-icon.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/close-icon.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/close-icon.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/colors.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/colors.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/colors.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/colors.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/display-property.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/display-property.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/display-property.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/display-property.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/flexbox.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/flexbox.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/flexbox.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/flexbox.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/image-replacement.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/image-replacement.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/image-replacement.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/image-replacement.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/invisible-content.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/invisible-content.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/invisible-content.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/invisible-content.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/position.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/position.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/position.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/position.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/responsive-helpers.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/responsive-helpers.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/responsive-helpers.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/responsive-helpers.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/screenreaders.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/screenreaders.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/screenreaders.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/screenreaders.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/sizing.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/sizing.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/sizing.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/sizing.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/spacing.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/spacing.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/spacing.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/spacing.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/typography.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/typography.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/typography.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/typography.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/vertical-align.md b/src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/vertical-align.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/docs/utilities/vertical-align.md rename to src/scss/bootstrap-4.0.0-alpha.6/docs/utilities/vertical-align.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/grunt/change-version.js b/src/scss/bootstrap-4.0.0-alpha.6/grunt/change-version.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/grunt/change-version.js rename to src/scss/bootstrap-4.0.0-alpha.6/grunt/change-version.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/grunt/configBridge.json b/src/scss/bootstrap-4.0.0-alpha.6/grunt/configBridge.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/grunt/configBridge.json rename to src/scss/bootstrap-4.0.0-alpha.6/grunt/configBridge.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/grunt/gcp-key.json.enc b/src/scss/bootstrap-4.0.0-alpha.6/grunt/gcp-key.json.enc similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/grunt/gcp-key.json.enc rename to src/scss/bootstrap-4.0.0-alpha.6/grunt/gcp-key.json.enc diff --git a/static/scss/bootstrap-4.0.0-alpha.6/grunt/npm-shrinkwrap.json b/src/scss/bootstrap-4.0.0-alpha.6/grunt/npm-shrinkwrap.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/grunt/npm-shrinkwrap.json rename to src/scss/bootstrap-4.0.0-alpha.6/grunt/npm-shrinkwrap.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/grunt/postcss.js b/src/scss/bootstrap-4.0.0-alpha.6/grunt/postcss.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/grunt/postcss.js rename to src/scss/bootstrap-4.0.0-alpha.6/grunt/postcss.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/grunt/sauce_browsers.yml b/src/scss/bootstrap-4.0.0-alpha.6/grunt/sauce_browsers.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/grunt/sauce_browsers.yml rename to src/scss/bootstrap-4.0.0-alpha.6/grunt/sauce_browsers.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/grunt/upload-preview.sh b/src/scss/bootstrap-4.0.0-alpha.6/grunt/upload-preview.sh similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/grunt/upload-preview.sh rename to src/scss/bootstrap-4.0.0-alpha.6/grunt/upload-preview.sh diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/.babelrc b/src/scss/bootstrap-4.0.0-alpha.6/js/.babelrc similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/.babelrc rename to src/scss/bootstrap-4.0.0-alpha.6/js/.babelrc diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/.eslintrc.json b/src/scss/bootstrap-4.0.0-alpha.6/js/.eslintrc.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/.eslintrc.json rename to src/scss/bootstrap-4.0.0-alpha.6/js/.eslintrc.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/alert.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/button.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/carousel.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/collapse.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/dropdown.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/modal.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/popover.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/scrollspy.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/tab.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/tooltip.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js.map b/src/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js.map similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js.map rename to src/scss/bootstrap-4.0.0-alpha.6/js/dist/util.js.map diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/alert.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/alert.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/alert.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/alert.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/button.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/button.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/button.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/button.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/carousel.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/carousel.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/carousel.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/carousel.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/collapse.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/collapse.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/collapse.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/collapse.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/dropdown.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/dropdown.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/dropdown.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/dropdown.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/modal.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/modal.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/modal.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/modal.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/popover.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/popover.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/popover.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/popover.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/scrollspy.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/scrollspy.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/scrollspy.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/scrollspy.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/tab.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/tab.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/tab.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/tab.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/tooltip.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/tooltip.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/tooltip.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/tooltip.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/src/util.js b/src/scss/bootstrap-4.0.0-alpha.6/js/src/util.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/src/util.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/src/util.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/.eslintrc.json b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/.eslintrc.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/.eslintrc.json rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/.eslintrc.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/README.md b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/README.md similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/README.md rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/README.md diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/index.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/index.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/index.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/index.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/alert.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/alert.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/alert.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/alert.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/button.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/button.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/button.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/button.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/carousel.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/carousel.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/carousel.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/carousel.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/collapse.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/collapse.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/collapse.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/collapse.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/dropdown.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/dropdown.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/dropdown.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/dropdown.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/modal.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/modal.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/modal.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/modal.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/phantom.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/phantom.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/phantom.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/phantom.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/popover.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/popover.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/popover.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/popover.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/scrollspy.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/scrollspy.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/scrollspy.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/scrollspy.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tab.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tab.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tab.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tab.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tooltip.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tooltip.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tooltip.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/unit/tooltip.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.css b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.css similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.css rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.css diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.js b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.js rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/vendor/qunit.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/alert.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/alert.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/alert.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/alert.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/button.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/button.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/button.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/button.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/carousel.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/carousel.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/carousel.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/carousel.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/collapse.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/collapse.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/collapse.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/collapse.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/dropdown.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/dropdown.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/dropdown.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/dropdown.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/modal.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/modal.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/modal.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/modal.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/popover.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/popover.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/popover.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/popover.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/scrollspy.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/scrollspy.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/scrollspy.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/scrollspy.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tab.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tab.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tab.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tab.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tooltip.html b/src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tooltip.html similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tooltip.html rename to src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/tooltip.html diff --git a/static/scss/bootstrap-4.0.0-alpha.6/nuget/MyGet.ps1 b/src/scss/bootstrap-4.0.0-alpha.6/nuget/MyGet.ps1 similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/nuget/MyGet.ps1 rename to src/scss/bootstrap-4.0.0-alpha.6/nuget/MyGet.ps1 diff --git a/static/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.nuspec b/src/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.nuspec similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.nuspec rename to src/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.nuspec diff --git a/static/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.sass.nuspec b/src/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.sass.nuspec similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.sass.nuspec rename to src/scss/bootstrap-4.0.0-alpha.6/nuget/bootstrap.sass.nuspec diff --git a/static/scss/bootstrap-4.0.0-alpha.6/package.js b/src/scss/bootstrap-4.0.0-alpha.6/package.js similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/package.js rename to src/scss/bootstrap-4.0.0-alpha.6/package.js diff --git a/static/scss/bootstrap-4.0.0-alpha.6/package.json b/src/scss/bootstrap-4.0.0-alpha.6/package.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/package.json rename to src/scss/bootstrap-4.0.0-alpha.6/package.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/sache.json b/src/scss/bootstrap-4.0.0-alpha.6/sache.json similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/sache.json rename to src/scss/bootstrap-4.0.0-alpha.6/sache.json diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/.scss-lint.yml b/src/scss/bootstrap-4.0.0-alpha.6/scss/.scss-lint.yml similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/.scss-lint.yml rename to src/scss/bootstrap-4.0.0-alpha.6/scss/.scss-lint.yml diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_alert.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_alert.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_alert.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_alert.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_badge.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_badge.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_badge.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_badge.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_breadcrumb.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_breadcrumb.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_breadcrumb.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_breadcrumb.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_button-group.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_button-group.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_button-group.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_button-group.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_buttons.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_buttons.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_buttons.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_buttons.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_card.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_card.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_card.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_card.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_carousel.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_carousel.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_carousel.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_carousel.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_close.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_close.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_close.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_close.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_code.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_code.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_code.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_code.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_custom-forms.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_custom-forms.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_custom-forms.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_custom-forms.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_custom.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_custom.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_custom.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_custom.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_dropdown.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_dropdown.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_dropdown.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_dropdown.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_forms.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_forms.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_forms.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_forms.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_grid.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_grid.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_grid.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_grid.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_images.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_images.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_images.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_images.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_input-group.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_input-group.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_input-group.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_input-group.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_jumbotron.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_jumbotron.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_jumbotron.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_jumbotron.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_list-group.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_list-group.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_list-group.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_list-group.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_media.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_media.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_media.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_media.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_mixins.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_mixins.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_mixins.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_mixins.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_modal.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_modal.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_modal.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_modal.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_nav.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_nav.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_nav.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_nav.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_navbar.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_navbar.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_navbar.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_navbar.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_normalize.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_normalize.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_normalize.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_normalize.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_pagination.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_pagination.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_pagination.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_pagination.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_popover.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_popover.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_popover.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_popover.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_print.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_print.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_print.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_print.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_progress.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_progress.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_progress.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_progress.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_reboot.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_reboot.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_reboot.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_reboot.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_responsive-embed.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_responsive-embed.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_responsive-embed.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_responsive-embed.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_tables.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_tables.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_tables.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_tables.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_tooltip.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_tooltip.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_tooltip.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_tooltip.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_transitions.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_transitions.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_transitions.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_transitions.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_type.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_type.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_type.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_type.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_utilities.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_utilities.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_utilities.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_utilities.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/_variables.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/_variables.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/_variables.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/_variables.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-grid.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-grid.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-grid.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-grid.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-reboot.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-reboot.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-reboot.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap-reboot.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/bootstrap.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_alert.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_alert.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_alert.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_alert.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_background-variant.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_background-variant.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_background-variant.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_background-variant.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_badge.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_badge.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_badge.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_badge.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_border-radius.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_border-radius.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_border-radius.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_border-radius.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_breakpoints.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_breakpoints.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_breakpoints.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_breakpoints.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_buttons.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_buttons.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_buttons.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_buttons.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_cards.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_cards.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_cards.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_cards.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_clearfix.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_clearfix.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_clearfix.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_clearfix.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_float.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_float.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_float.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_float.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_forms.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_forms.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_forms.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_forms.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_gradients.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_gradients.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_gradients.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_gradients.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid-framework.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid-framework.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid-framework.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid-framework.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_grid.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_hover.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_hover.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_hover.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_hover.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_image.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_image.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_image.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_image.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_list-group.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_list-group.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_list-group.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_list-group.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_lists.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_lists.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_lists.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_lists.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_nav-divider.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_nav-divider.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_nav-divider.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_nav-divider.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_navbar-align.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_navbar-align.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_navbar-align.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_navbar-align.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_pagination.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_pagination.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_pagination.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_pagination.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_reset-text.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_reset-text.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_reset-text.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_reset-text.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_resize.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_resize.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_resize.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_resize.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_screen-reader.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_screen-reader.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_screen-reader.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_screen-reader.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_size.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_size.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_size.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_size.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_table-row.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_table-row.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_table-row.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_table-row.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-emphasis.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-emphasis.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-emphasis.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-emphasis.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-hide.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-hide.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-hide.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-hide.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-truncate.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-truncate.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-truncate.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_text-truncate.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_transforms.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_transforms.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_transforms.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_transforms.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_visibility.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_visibility.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_visibility.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/mixins/_visibility.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_align.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_align.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_align.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_align.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_background.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_background.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_background.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_background.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_borders.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_borders.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_borders.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_borders.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_clearfix.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_clearfix.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_clearfix.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_clearfix.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_display.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_display.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_display.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_display.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_flex.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_flex.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_flex.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_flex.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_float.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_float.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_float.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_float.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_position.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_position.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_position.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_position.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_screenreaders.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_screenreaders.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_screenreaders.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_screenreaders.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_sizing.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_sizing.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_sizing.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_sizing.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_spacing.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_spacing.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_spacing.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_spacing.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_text.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_text.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_text.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_text.scss diff --git a/static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_visibility.scss b/src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_visibility.scss similarity index 100% rename from static/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_visibility.scss rename to src/scss/bootstrap-4.0.0-alpha.6/scss/utilities/_visibility.scss diff --git a/static/scss/photoswipe/_main-settings.scss b/src/scss/photoswipe/_main-settings.scss similarity index 100% rename from static/scss/photoswipe/_main-settings.scss rename to src/scss/photoswipe/_main-settings.scss diff --git a/static/scss/photoswipe/default-skin/default-skin-svg.sketch/Data b/src/scss/photoswipe/default-skin/default-skin-svg.sketch/Data similarity index 100% rename from static/scss/photoswipe/default-skin/default-skin-svg.sketch/Data rename to src/scss/photoswipe/default-skin/default-skin-svg.sketch/Data diff --git a/static/scss/photoswipe/default-skin/default-skin-svg.sketch/metadata b/src/scss/photoswipe/default-skin/default-skin-svg.sketch/metadata similarity index 100% rename from static/scss/photoswipe/default-skin/default-skin-svg.sketch/metadata rename to src/scss/photoswipe/default-skin/default-skin-svg.sketch/metadata diff --git a/static/scss/photoswipe/default-skin/default-skin-svg.sketch/version b/src/scss/photoswipe/default-skin/default-skin-svg.sketch/version similarity index 100% rename from static/scss/photoswipe/default-skin/default-skin-svg.sketch/version rename to src/scss/photoswipe/default-skin/default-skin-svg.sketch/version diff --git a/static/css/default-skin.png b/src/scss/photoswipe/default-skin/default-skin.png similarity index 100% rename from static/css/default-skin.png rename to src/scss/photoswipe/default-skin/default-skin.png diff --git a/static/scss/photoswipe/default-skin/default-skin.psd b/src/scss/photoswipe/default-skin/default-skin.psd similarity index 100% rename from static/scss/photoswipe/default-skin/default-skin.psd rename to src/scss/photoswipe/default-skin/default-skin.psd diff --git a/static/scss/photoswipe/default-skin/default-skin.scss b/src/scss/photoswipe/default-skin/default-skin.scss similarity index 100% rename from static/scss/photoswipe/default-skin/default-skin.scss rename to src/scss/photoswipe/default-skin/default-skin.scss diff --git a/static/css/default-skin.svg b/src/scss/photoswipe/default-skin/default-skin.svg similarity index 100% rename from static/css/default-skin.svg rename to src/scss/photoswipe/default-skin/default-skin.svg diff --git a/static/scss/photoswipe/default-skin/preloader.gif b/src/scss/photoswipe/default-skin/preloader.gif similarity index 100% rename from static/scss/photoswipe/default-skin/preloader.gif rename to src/scss/photoswipe/default-skin/preloader.gif diff --git a/static/scss/photoswipe/main.scss b/src/scss/photoswipe/main.scss similarity index 100% rename from static/scss/photoswipe/main.scss rename to src/scss/photoswipe/main.scss diff --git a/static/scss/style.scss b/src/scss/style.scss similarity index 100% rename from static/scss/style.scss rename to src/scss/style.scss diff --git a/static/config.json b/src/static/config.json similarity index 100% rename from static/config.json rename to src/static/config.json diff --git a/static/css/bootstrap.min.css b/src/static/css/bootstrap.min.css similarity index 100% rename from static/css/bootstrap.min.css rename to src/static/css/bootstrap.min.css diff --git a/static/scss/photoswipe/default-skin/default-skin.png b/src/static/css/default-skin.png similarity index 100% rename from static/scss/photoswipe/default-skin/default-skin.png rename to src/static/css/default-skin.png diff --git a/static/scss/photoswipe/default-skin/default-skin.svg b/src/static/css/default-skin.svg similarity index 100% rename from static/scss/photoswipe/default-skin/default-skin.svg rename to src/static/css/default-skin.svg diff --git a/static/css/font-awesome.min.css b/src/static/css/font-awesome.min.css similarity index 100% rename from static/css/font-awesome.min.css rename to src/static/css/font-awesome.min.css diff --git a/static/css/js-anythingslider.css b/src/static/css/js-anythingslider.css similarity index 100% rename from static/css/js-anythingslider.css rename to src/static/css/js-anythingslider.css diff --git a/static/css/prettify.css b/src/static/css/prettify.css similarity index 100% rename from static/css/prettify.css rename to src/static/css/prettify.css diff --git a/static/css/style.css b/src/static/css/style.css similarity index 100% rename from static/css/style.css rename to src/static/css/style.css diff --git a/static/favicon.ico b/src/static/favicon.ico similarity index 100% rename from static/favicon.ico rename to src/static/favicon.ico diff --git a/static/fonts/fontawesome-webfont.eot b/src/static/fonts/fontawesome-webfont.eot similarity index 100% rename from static/fonts/fontawesome-webfont.eot rename to src/static/fonts/fontawesome-webfont.eot diff --git a/static/fonts/fontawesome-webfont.svg b/src/static/fonts/fontawesome-webfont.svg similarity index 100% rename from static/fonts/fontawesome-webfont.svg rename to src/static/fonts/fontawesome-webfont.svg diff --git a/static/fonts/fontawesome-webfont.ttf b/src/static/fonts/fontawesome-webfont.ttf similarity index 100% rename from static/fonts/fontawesome-webfont.ttf rename to src/static/fonts/fontawesome-webfont.ttf diff --git a/static/fonts/fontawesome-webfont.woff b/src/static/fonts/fontawesome-webfont.woff similarity index 100% rename from static/fonts/fontawesome-webfont.woff rename to src/static/fonts/fontawesome-webfont.woff diff --git a/static/fonts/fontawesome-webfont.woff2 b/src/static/fonts/fontawesome-webfont.woff2 similarity index 100% rename from static/fonts/fontawesome-webfont.woff2 rename to src/static/fonts/fontawesome-webfont.woff2 diff --git a/static/fonts/glyphicons-halflings-regular.eot b/src/static/fonts/glyphicons-halflings-regular.eot similarity index 100% rename from static/fonts/glyphicons-halflings-regular.eot rename to src/static/fonts/glyphicons-halflings-regular.eot diff --git a/static/fonts/glyphicons-halflings-regular.svg b/src/static/fonts/glyphicons-halflings-regular.svg similarity index 100% rename from static/fonts/glyphicons-halflings-regular.svg rename to src/static/fonts/glyphicons-halflings-regular.svg diff --git a/static/fonts/glyphicons-halflings-regular.ttf b/src/static/fonts/glyphicons-halflings-regular.ttf similarity index 100% rename from static/fonts/glyphicons-halflings-regular.ttf rename to src/static/fonts/glyphicons-halflings-regular.ttf diff --git a/static/fonts/glyphicons-halflings-regular.woff b/src/static/fonts/glyphicons-halflings-regular.woff similarity index 100% rename from static/fonts/glyphicons-halflings-regular.woff rename to src/static/fonts/glyphicons-halflings-regular.woff diff --git a/static/fonts/glyphicons-halflings-regular.woff2 b/src/static/fonts/glyphicons-halflings-regular.woff2 similarity index 100% rename from static/fonts/glyphicons-halflings-regular.woff2 rename to src/static/fonts/glyphicons-halflings-regular.woff2 diff --git a/static/images/LWL/appliance-eco.jpg b/src/static/images/LWL/appliance-eco.jpg similarity index 100% rename from static/images/LWL/appliance-eco.jpg rename to src/static/images/LWL/appliance-eco.jpg diff --git a/static/images/LWL/appliance-prime.jpg b/src/static/images/LWL/appliance-prime.jpg similarity index 100% rename from static/images/LWL/appliance-prime.jpg rename to src/static/images/LWL/appliance-prime.jpg diff --git a/static/images/LWL/appliance-pro.jpg b/src/static/images/LWL/appliance-pro.jpg similarity index 100% rename from static/images/LWL/appliance-pro.jpg rename to src/static/images/LWL/appliance-pro.jpg diff --git a/static/images/Network-1.png b/src/static/images/Network-1.png similarity index 100% rename from static/images/Network-1.png rename to src/static/images/Network-1.png diff --git a/static/images/Stats1.png b/src/static/images/Stats1.png similarity index 100% rename from static/images/Stats1.png rename to src/static/images/Stats1.png diff --git a/static/images/Stats2.png b/src/static/images/Stats2.png similarity index 100% rename from static/images/Stats2.png rename to src/static/images/Stats2.png diff --git a/static/images/aktinet_logo.jpg b/src/static/images/aktinet_logo.jpg similarity index 100% rename from static/images/aktinet_logo.jpg rename to src/static/images/aktinet_logo.jpg diff --git a/static/images/anythingslider/_2arrows.png b/src/static/images/anythingslider/_2arrows.png similarity index 100% rename from static/images/anythingslider/_2arrows.png rename to src/static/images/anythingslider/_2arrows.png diff --git a/static/images/anythingslider/_arrows.png b/src/static/images/anythingslider/_arrows.png similarity index 100% rename from static/images/anythingslider/_arrows.png rename to src/static/images/anythingslider/_arrows.png diff --git a/static/images/anythingslider/arrows-ipfire2.png b/src/static/images/anythingslider/arrows-ipfire2.png similarity index 100% rename from static/images/anythingslider/arrows-ipfire2.png rename to src/static/images/anythingslider/arrows-ipfire2.png diff --git a/static/images/anythingslider/arrows.png b/src/static/images/anythingslider/arrows.png similarity index 100% rename from static/images/anythingslider/arrows.png rename to src/static/images/anythingslider/arrows.png diff --git a/static/images/anythingslider/cellshade.png b/src/static/images/anythingslider/cellshade.png similarity index 100% rename from static/images/anythingslider/cellshade.png rename to src/static/images/anythingslider/cellshade.png diff --git a/static/images/anythingslider/old_arrows.png b/src/static/images/anythingslider/old_arrows.png similarity index 100% rename from static/images/anythingslider/old_arrows.png rename to src/static/images/anythingslider/old_arrows.png diff --git a/static/images/art/Banner.png b/src/static/images/art/Banner.png similarity index 100% rename from static/images/art/Banner.png rename to src/static/images/art/Banner.png diff --git a/static/images/art/Banner_thumb.png b/src/static/images/art/Banner_thumb.png similarity index 100% rename from static/images/art/Banner_thumb.png rename to src/static/images/art/Banner_thumb.png diff --git a/static/images/art/CD1.png b/src/static/images/art/CD1.png similarity index 100% rename from static/images/art/CD1.png rename to src/static/images/art/CD1.png diff --git a/static/images/art/CD1_thumb.png b/src/static/images/art/CD1_thumb.png similarity index 100% rename from static/images/art/CD1_thumb.png rename to src/static/images/art/CD1_thumb.png diff --git a/static/images/art/CD2.png b/src/static/images/art/CD2.png similarity index 100% rename from static/images/art/CD2.png rename to src/static/images/art/CD2.png diff --git a/static/images/art/CD2_thumb.png b/src/static/images/art/CD2_thumb.png similarity index 100% rename from static/images/art/CD2_thumb.png rename to src/static/images/art/CD2_thumb.png diff --git a/static/images/art/Firetest1.png b/src/static/images/art/Firetest1.png similarity index 100% rename from static/images/art/Firetest1.png rename to src/static/images/art/Firetest1.png diff --git a/static/images/art/Tux.png b/src/static/images/art/Tux.png similarity index 100% rename from static/images/art/Tux.png rename to src/static/images/art/Tux.png diff --git a/static/images/art/Tux_thumb.png b/src/static/images/art/Tux_thumb.png similarity index 100% rename from static/images/art/Tux_thumb.png rename to src/static/images/art/Tux_thumb.png diff --git a/static/images/art/logo2.png b/src/static/images/art/logo2.png similarity index 100% rename from static/images/art/logo2.png rename to src/static/images/art/logo2.png diff --git a/static/images/artwork/cd_label.pdf b/src/static/images/artwork/cd_label.pdf similarity index 100% rename from static/images/artwork/cd_label.pdf rename to src/static/images/artwork/cd_label.pdf diff --git a/static/images/artwork/cd_label_tn.png b/src/static/images/artwork/cd_label_tn.png similarity index 100% rename from static/images/artwork/cd_label_tn.png rename to src/static/images/artwork/cd_label_tn.png diff --git a/static/images/artwork/cd_schuber.pdf b/src/static/images/artwork/cd_schuber.pdf similarity index 100% rename from static/images/artwork/cd_schuber.pdf rename to src/static/images/artwork/cd_schuber.pdf diff --git a/static/images/artwork/cd_schuber_tn.png b/src/static/images/artwork/cd_schuber_tn.png similarity index 100% rename from static/images/artwork/cd_schuber_tn.png rename to src/static/images/artwork/cd_schuber_tn.png diff --git a/static/images/artwork/flyer.pdf b/src/static/images/artwork/flyer.pdf similarity index 100% rename from static/images/artwork/flyer.pdf rename to src/static/images/artwork/flyer.pdf diff --git a/static/images/artwork/flyer_tn.png b/src/static/images/artwork/flyer_tn.png similarity index 100% rename from static/images/artwork/flyer_tn.png rename to src/static/images/artwork/flyer_tn.png diff --git a/static/images/artwork/rollup.pdf b/src/static/images/artwork/rollup.pdf similarity index 100% rename from static/images/artwork/rollup.pdf rename to src/static/images/artwork/rollup.pdf diff --git a/static/images/artwork/rollup_tn.png b/src/static/images/artwork/rollup_tn.png similarity index 100% rename from static/images/artwork/rollup_tn.png rename to src/static/images/artwork/rollup_tn.png diff --git a/static/images/banners/hetzner_hosted_by_1.jpg b/src/static/images/banners/hetzner_hosted_by_1.jpg similarity index 100% rename from static/images/banners/hetzner_hosted_by_1.jpg rename to src/static/images/banners/hetzner_hosted_by_1.jpg diff --git a/static/images/banners/like_us_on_fb.png b/src/static/images/banners/like_us_on_fb.png similarity index 100% rename from static/images/banners/like_us_on_fb.png rename to src/static/images/banners/like_us_on_fb.png diff --git a/static/images/bg-menu99.png b/src/static/images/bg-menu99.png similarity index 100% rename from static/images/bg-menu99.png rename to src/static/images/bg-menu99.png diff --git a/static/images/bg-shl.png b/src/static/images/bg-shl.png similarity index 100% rename from static/images/bg-shl.png rename to src/static/images/bg-shl.png diff --git a/static/images/bg-shr.png b/src/static/images/bg-shr.png similarity index 100% rename from static/images/bg-shr.png rename to src/static/images/bg-shr.png diff --git a/static/images/bg.png b/src/static/images/bg.png similarity index 100% rename from static/images/bg.png rename to src/static/images/bg.png diff --git a/static/images/bg1.png b/src/static/images/bg1.png similarity index 100% rename from static/images/bg1.png rename to src/static/images/bg1.png diff --git a/static/images/bittorrent.png b/src/static/images/bittorrent.png similarity index 100% rename from static/images/bittorrent.png rename to src/static/images/bittorrent.png diff --git a/static/images/box_ipfire.png b/src/static/images/box_ipfire.png similarity index 100% rename from static/images/box_ipfire.png rename to src/static/images/box_ipfire.png diff --git a/static/images/btn-blue.png b/src/static/images/btn-blue.png similarity index 100% rename from static/images/btn-blue.png rename to src/static/images/btn-blue.png diff --git a/static/images/btn-break.png b/src/static/images/btn-break.png similarity index 100% rename from static/images/btn-break.png rename to src/static/images/btn-break.png diff --git a/static/images/btn-empty.png b/src/static/images/btn-empty.png similarity index 100% rename from static/images/btn-empty.png rename to src/static/images/btn-empty.png diff --git a/static/images/btn-green.png b/src/static/images/btn-green.png similarity index 100% rename from static/images/btn-green.png rename to src/static/images/btn-green.png diff --git a/static/images/btn-orange.png b/src/static/images/btn-orange.png similarity index 100% rename from static/images/btn-orange.png rename to src/static/images/btn-orange.png diff --git a/static/images/btn-red.png b/src/static/images/btn-red.png similarity index 100% rename from static/images/btn-red.png rename to src/static/images/btn-red.png diff --git a/static/images/btn-red2.png b/src/static/images/btn-red2.png similarity index 100% rename from static/images/btn-red2.png rename to src/static/images/btn-red2.png diff --git a/static/images/btn-white.png b/src/static/images/btn-white.png similarity index 100% rename from static/images/btn-white.png rename to src/static/images/btn-white.png diff --git a/static/images/btn-yellow.png b/src/static/images/btn-yellow.png similarity index 100% rename from static/images/btn-yellow.png rename to src/static/images/btn-yellow.png diff --git a/static/images/buttons/cebit_96x320.png b/src/static/images/buttons/cebit_96x320.png similarity index 100% rename from static/images/buttons/cebit_96x320.png rename to src/static/images/buttons/cebit_96x320.png diff --git a/static/images/buttons/download_core_96x320.png b/src/static/images/buttons/download_core_96x320.png similarity index 100% rename from static/images/buttons/download_core_96x320.png rename to src/static/images/buttons/download_core_96x320.png diff --git a/static/images/cebit-171px.png b/src/static/images/cebit-171px.png similarity index 100% rename from static/images/cebit-171px.png rename to src/static/images/cebit-171px.png diff --git a/static/images/cebit-177px_schatten.png b/src/static/images/cebit-177px_schatten.png similarity index 100% rename from static/images/cebit-177px_schatten.png rename to src/static/images/cebit-177px_schatten.png diff --git a/static/images/cebit/cebit_2010_1.jpg b/src/static/images/cebit/cebit_2010_1.jpg similarity index 100% rename from static/images/cebit/cebit_2010_1.jpg rename to src/static/images/cebit/cebit_2010_1.jpg diff --git a/static/images/cebit/cebit_2010_1_tn.jpg b/src/static/images/cebit/cebit_2010_1_tn.jpg similarity index 100% rename from static/images/cebit/cebit_2010_1_tn.jpg rename to src/static/images/cebit/cebit_2010_1_tn.jpg diff --git a/static/images/cebit/cebit_2010_2.jpg b/src/static/images/cebit/cebit_2010_2.jpg similarity index 100% rename from static/images/cebit/cebit_2010_2.jpg rename to src/static/images/cebit/cebit_2010_2.jpg diff --git a/static/images/cebit/cebit_2010_2_tn.jpg b/src/static/images/cebit/cebit_2010_2_tn.jpg similarity index 100% rename from static/images/cebit/cebit_2010_2_tn.jpg rename to src/static/images/cebit/cebit_2010_2_tn.jpg diff --git a/static/images/cebit/cebit_2010_3.jpg b/src/static/images/cebit/cebit_2010_3.jpg similarity index 100% rename from static/images/cebit/cebit_2010_3.jpg rename to src/static/images/cebit/cebit_2010_3.jpg diff --git a/static/images/cebit/cebit_2010_3_tn.jpg b/src/static/images/cebit/cebit_2010_3_tn.jpg similarity index 100% rename from static/images/cebit/cebit_2010_3_tn.jpg rename to src/static/images/cebit/cebit_2010_3_tn.jpg diff --git a/static/images/cebit/cebit_2010_4.jpg b/src/static/images/cebit/cebit_2010_4.jpg similarity index 100% rename from static/images/cebit/cebit_2010_4.jpg rename to src/static/images/cebit/cebit_2010_4.jpg diff --git a/static/images/cebit/cebit_2010_4_tn.jpg b/src/static/images/cebit/cebit_2010_4_tn.jpg similarity index 100% rename from static/images/cebit/cebit_2010_4_tn.jpg rename to src/static/images/cebit/cebit_2010_4_tn.jpg diff --git a/static/images/cebit2010_logo_en.png b/src/static/images/cebit2010_logo_en.png similarity index 100% rename from static/images/cebit2010_logo_en.png rename to src/static/images/cebit2010_logo_en.png diff --git a/static/images/de.gif b/src/static/images/de.gif similarity index 100% rename from static/images/de.gif rename to src/static/images/de.gif diff --git a/static/images/development.png b/src/static/images/development.png similarity index 100% rename from static/images/development.png rename to src/static/images/development.png diff --git a/static/images/download.png b/src/static/images/download.png similarity index 100% rename from static/images/download.png rename to src/static/images/download.png diff --git a/static/images/download_button.png b/src/static/images/download_button.png similarity index 100% rename from static/images/download_button.png rename to src/static/images/download_button.png diff --git a/static/images/download_type_alix.png b/src/static/images/download_type_alix.png similarity index 100% rename from static/images/download_type_alix.png rename to src/static/images/download_type_alix.png diff --git a/static/images/download_type_flash.png b/src/static/images/download_type_flash.png similarity index 100% rename from static/images/download_type_flash.png rename to src/static/images/download_type_flash.png diff --git a/static/images/download_type_iso.png b/src/static/images/download_type_iso.png similarity index 100% rename from static/images/download_type_iso.png rename to src/static/images/download_type_iso.png diff --git a/static/images/download_type_torrent.png b/src/static/images/download_type_torrent.png similarity index 100% rename from static/images/download_type_torrent.png rename to src/static/images/download_type_torrent.png diff --git a/static/images/download_type_usbfdd.png b/src/static/images/download_type_usbfdd.png similarity index 100% rename from static/images/download_type_usbfdd.png rename to src/static/images/download_type_usbfdd.png diff --git a/static/images/download_type_usbhdd.png b/src/static/images/download_type_usbhdd.png similarity index 100% rename from static/images/download_type_usbhdd.png rename to src/static/images/download_type_usbhdd.png diff --git a/static/images/download_type_xen.png b/src/static/images/download_type_xen.png similarity index 100% rename from static/images/download_type_xen.png rename to src/static/images/download_type_xen.png diff --git a/static/images/en.gif b/src/static/images/en.gif similarity index 100% rename from static/images/en.gif rename to src/static/images/en.gif diff --git a/static/images/error/403.png b/src/static/images/error/403.png similarity index 100% rename from static/images/error/403.png rename to src/static/images/error/403.png diff --git a/static/images/error/404.png b/src/static/images/error/404.png similarity index 100% rename from static/images/error/404.png rename to src/static/images/error/404.png diff --git a/static/images/error/500.png b/src/static/images/error/500.png similarity index 100% rename from static/images/error/500.png rename to src/static/images/error/500.png diff --git a/static/images/features.png b/src/static/images/features.png similarity index 100% rename from static/images/features.png rename to src/static/images/features.png diff --git a/static/images/feed.png b/src/static/images/feed.png similarity index 100% rename from static/images/feed.png rename to src/static/images/feed.png diff --git a/static/images/flags/ad.png b/src/static/images/flags/ad.png similarity index 100% rename from static/images/flags/ad.png rename to src/static/images/flags/ad.png diff --git a/static/images/flags/ae.png b/src/static/images/flags/ae.png similarity index 100% rename from static/images/flags/ae.png rename to src/static/images/flags/ae.png diff --git a/static/images/flags/af.png b/src/static/images/flags/af.png similarity index 100% rename from static/images/flags/af.png rename to src/static/images/flags/af.png diff --git a/static/images/flags/ag.png b/src/static/images/flags/ag.png similarity index 100% rename from static/images/flags/ag.png rename to src/static/images/flags/ag.png diff --git a/static/images/flags/ai.png b/src/static/images/flags/ai.png similarity index 100% rename from static/images/flags/ai.png rename to src/static/images/flags/ai.png diff --git a/static/images/flags/al.png b/src/static/images/flags/al.png similarity index 100% rename from static/images/flags/al.png rename to src/static/images/flags/al.png diff --git a/static/images/flags/am.png b/src/static/images/flags/am.png similarity index 100% rename from static/images/flags/am.png rename to src/static/images/flags/am.png diff --git a/static/images/flags/an.png b/src/static/images/flags/an.png similarity index 100% rename from static/images/flags/an.png rename to src/static/images/flags/an.png diff --git a/static/images/flags/ao.png b/src/static/images/flags/ao.png similarity index 100% rename from static/images/flags/ao.png rename to src/static/images/flags/ao.png diff --git a/static/images/flags/ar.png b/src/static/images/flags/ar.png similarity index 100% rename from static/images/flags/ar.png rename to src/static/images/flags/ar.png diff --git a/static/images/flags/as.png b/src/static/images/flags/as.png similarity index 100% rename from static/images/flags/as.png rename to src/static/images/flags/as.png diff --git a/static/images/flags/at.png b/src/static/images/flags/at.png similarity index 100% rename from static/images/flags/at.png rename to src/static/images/flags/at.png diff --git a/static/images/flags/au.png b/src/static/images/flags/au.png similarity index 100% rename from static/images/flags/au.png rename to src/static/images/flags/au.png diff --git a/static/images/flags/aw.png b/src/static/images/flags/aw.png similarity index 100% rename from static/images/flags/aw.png rename to src/static/images/flags/aw.png diff --git a/static/images/flags/ax.png b/src/static/images/flags/ax.png similarity index 100% rename from static/images/flags/ax.png rename to src/static/images/flags/ax.png diff --git a/static/images/flags/az.png b/src/static/images/flags/az.png similarity index 100% rename from static/images/flags/az.png rename to src/static/images/flags/az.png diff --git a/static/images/flags/ba.png b/src/static/images/flags/ba.png similarity index 100% rename from static/images/flags/ba.png rename to src/static/images/flags/ba.png diff --git a/static/images/flags/bb.png b/src/static/images/flags/bb.png similarity index 100% rename from static/images/flags/bb.png rename to src/static/images/flags/bb.png diff --git a/static/images/flags/bd.png b/src/static/images/flags/bd.png similarity index 100% rename from static/images/flags/bd.png rename to src/static/images/flags/bd.png diff --git a/static/images/flags/be.png b/src/static/images/flags/be.png similarity index 100% rename from static/images/flags/be.png rename to src/static/images/flags/be.png diff --git a/static/images/flags/bf.png b/src/static/images/flags/bf.png similarity index 100% rename from static/images/flags/bf.png rename to src/static/images/flags/bf.png diff --git a/static/images/flags/bg.png b/src/static/images/flags/bg.png similarity index 100% rename from static/images/flags/bg.png rename to src/static/images/flags/bg.png diff --git a/static/images/flags/bh.png b/src/static/images/flags/bh.png similarity index 100% rename from static/images/flags/bh.png rename to src/static/images/flags/bh.png diff --git a/static/images/flags/bi.png b/src/static/images/flags/bi.png similarity index 100% rename from static/images/flags/bi.png rename to src/static/images/flags/bi.png diff --git a/static/images/flags/bj.png b/src/static/images/flags/bj.png similarity index 100% rename from static/images/flags/bj.png rename to src/static/images/flags/bj.png diff --git a/static/images/flags/bm.png b/src/static/images/flags/bm.png similarity index 100% rename from static/images/flags/bm.png rename to src/static/images/flags/bm.png diff --git a/static/images/flags/bn.png b/src/static/images/flags/bn.png similarity index 100% rename from static/images/flags/bn.png rename to src/static/images/flags/bn.png diff --git a/static/images/flags/bo.png b/src/static/images/flags/bo.png similarity index 100% rename from static/images/flags/bo.png rename to src/static/images/flags/bo.png diff --git a/static/images/flags/br.png b/src/static/images/flags/br.png similarity index 100% rename from static/images/flags/br.png rename to src/static/images/flags/br.png diff --git a/static/images/flags/bs.png b/src/static/images/flags/bs.png similarity index 100% rename from static/images/flags/bs.png rename to src/static/images/flags/bs.png diff --git a/static/images/flags/bt.png b/src/static/images/flags/bt.png similarity index 100% rename from static/images/flags/bt.png rename to src/static/images/flags/bt.png diff --git a/static/images/flags/bv.png b/src/static/images/flags/bv.png similarity index 100% rename from static/images/flags/bv.png rename to src/static/images/flags/bv.png diff --git a/static/images/flags/bw.png b/src/static/images/flags/bw.png similarity index 100% rename from static/images/flags/bw.png rename to src/static/images/flags/bw.png diff --git a/static/images/flags/by.png b/src/static/images/flags/by.png similarity index 100% rename from static/images/flags/by.png rename to src/static/images/flags/by.png diff --git a/static/images/flags/bz.png b/src/static/images/flags/bz.png similarity index 100% rename from static/images/flags/bz.png rename to src/static/images/flags/bz.png diff --git a/static/images/flags/ca.png b/src/static/images/flags/ca.png similarity index 100% rename from static/images/flags/ca.png rename to src/static/images/flags/ca.png diff --git a/static/images/flags/catalonia.png b/src/static/images/flags/catalonia.png similarity index 100% rename from static/images/flags/catalonia.png rename to src/static/images/flags/catalonia.png diff --git a/static/images/flags/cc.png b/src/static/images/flags/cc.png similarity index 100% rename from static/images/flags/cc.png rename to src/static/images/flags/cc.png diff --git a/static/images/flags/cd.png b/src/static/images/flags/cd.png similarity index 100% rename from static/images/flags/cd.png rename to src/static/images/flags/cd.png diff --git a/static/images/flags/cf.png b/src/static/images/flags/cf.png similarity index 100% rename from static/images/flags/cf.png rename to src/static/images/flags/cf.png diff --git a/static/images/flags/cg.png b/src/static/images/flags/cg.png similarity index 100% rename from static/images/flags/cg.png rename to src/static/images/flags/cg.png diff --git a/static/images/flags/ch.png b/src/static/images/flags/ch.png similarity index 100% rename from static/images/flags/ch.png rename to src/static/images/flags/ch.png diff --git a/static/images/flags/ci.png b/src/static/images/flags/ci.png similarity index 100% rename from static/images/flags/ci.png rename to src/static/images/flags/ci.png diff --git a/static/images/flags/ck.png b/src/static/images/flags/ck.png similarity index 100% rename from static/images/flags/ck.png rename to src/static/images/flags/ck.png diff --git a/static/images/flags/cl.png b/src/static/images/flags/cl.png similarity index 100% rename from static/images/flags/cl.png rename to src/static/images/flags/cl.png diff --git a/static/images/flags/cm.png b/src/static/images/flags/cm.png similarity index 100% rename from static/images/flags/cm.png rename to src/static/images/flags/cm.png diff --git a/static/images/flags/cn.png b/src/static/images/flags/cn.png similarity index 100% rename from static/images/flags/cn.png rename to src/static/images/flags/cn.png diff --git a/static/images/flags/co.png b/src/static/images/flags/co.png similarity index 100% rename from static/images/flags/co.png rename to src/static/images/flags/co.png diff --git a/static/images/flags/cr.png b/src/static/images/flags/cr.png similarity index 100% rename from static/images/flags/cr.png rename to src/static/images/flags/cr.png diff --git a/static/images/flags/cs.png b/src/static/images/flags/cs.png similarity index 100% rename from static/images/flags/cs.png rename to src/static/images/flags/cs.png diff --git a/static/images/flags/cu.png b/src/static/images/flags/cu.png similarity index 100% rename from static/images/flags/cu.png rename to src/static/images/flags/cu.png diff --git a/static/images/flags/cv.png b/src/static/images/flags/cv.png similarity index 100% rename from static/images/flags/cv.png rename to src/static/images/flags/cv.png diff --git a/static/images/flags/cx.png b/src/static/images/flags/cx.png similarity index 100% rename from static/images/flags/cx.png rename to src/static/images/flags/cx.png diff --git a/static/images/flags/cy.png b/src/static/images/flags/cy.png similarity index 100% rename from static/images/flags/cy.png rename to src/static/images/flags/cy.png diff --git a/static/images/flags/cz.png b/src/static/images/flags/cz.png similarity index 100% rename from static/images/flags/cz.png rename to src/static/images/flags/cz.png diff --git a/static/images/flags/da.png b/src/static/images/flags/da.png similarity index 100% rename from static/images/flags/da.png rename to src/static/images/flags/da.png diff --git a/static/images/flags/de.png b/src/static/images/flags/de.png similarity index 100% rename from static/images/flags/de.png rename to src/static/images/flags/de.png diff --git a/static/images/flags/dj.png b/src/static/images/flags/dj.png similarity index 100% rename from static/images/flags/dj.png rename to src/static/images/flags/dj.png diff --git a/static/images/flags/dk.png b/src/static/images/flags/dk.png similarity index 100% rename from static/images/flags/dk.png rename to src/static/images/flags/dk.png diff --git a/static/images/flags/dm.png b/src/static/images/flags/dm.png similarity index 100% rename from static/images/flags/dm.png rename to src/static/images/flags/dm.png diff --git a/static/images/flags/do.png b/src/static/images/flags/do.png similarity index 100% rename from static/images/flags/do.png rename to src/static/images/flags/do.png diff --git a/static/images/flags/dz.png b/src/static/images/flags/dz.png similarity index 100% rename from static/images/flags/dz.png rename to src/static/images/flags/dz.png diff --git a/static/images/flags/ec.png b/src/static/images/flags/ec.png similarity index 100% rename from static/images/flags/ec.png rename to src/static/images/flags/ec.png diff --git a/static/images/flags/ee.png b/src/static/images/flags/ee.png similarity index 100% rename from static/images/flags/ee.png rename to src/static/images/flags/ee.png diff --git a/static/images/flags/eg.png b/src/static/images/flags/eg.png similarity index 100% rename from static/images/flags/eg.png rename to src/static/images/flags/eg.png diff --git a/static/images/flags/eh.png b/src/static/images/flags/eh.png similarity index 100% rename from static/images/flags/eh.png rename to src/static/images/flags/eh.png diff --git a/static/images/flags/en.png b/src/static/images/flags/en.png similarity index 100% rename from static/images/flags/en.png rename to src/static/images/flags/en.png diff --git a/static/images/flags/england.png b/src/static/images/flags/england.png similarity index 100% rename from static/images/flags/england.png rename to src/static/images/flags/england.png diff --git a/static/images/flags/er.png b/src/static/images/flags/er.png similarity index 100% rename from static/images/flags/er.png rename to src/static/images/flags/er.png diff --git a/static/images/flags/es.png b/src/static/images/flags/es.png similarity index 100% rename from static/images/flags/es.png rename to src/static/images/flags/es.png diff --git a/static/images/flags/et.png b/src/static/images/flags/et.png similarity index 100% rename from static/images/flags/et.png rename to src/static/images/flags/et.png diff --git a/static/images/flags/europeanunion.png b/src/static/images/flags/europeanunion.png similarity index 100% rename from static/images/flags/europeanunion.png rename to src/static/images/flags/europeanunion.png diff --git a/static/images/flags/fam.png b/src/static/images/flags/fam.png similarity index 100% rename from static/images/flags/fam.png rename to src/static/images/flags/fam.png diff --git a/static/images/flags/fi.png b/src/static/images/flags/fi.png similarity index 100% rename from static/images/flags/fi.png rename to src/static/images/flags/fi.png diff --git a/static/images/flags/fj.png b/src/static/images/flags/fj.png similarity index 100% rename from static/images/flags/fj.png rename to src/static/images/flags/fj.png diff --git a/static/images/flags/fk.png b/src/static/images/flags/fk.png similarity index 100% rename from static/images/flags/fk.png rename to src/static/images/flags/fk.png diff --git a/static/images/flags/fm.png b/src/static/images/flags/fm.png similarity index 100% rename from static/images/flags/fm.png rename to src/static/images/flags/fm.png diff --git a/static/images/flags/fo.png b/src/static/images/flags/fo.png similarity index 100% rename from static/images/flags/fo.png rename to src/static/images/flags/fo.png diff --git a/static/images/flags/fr.png b/src/static/images/flags/fr.png similarity index 100% rename from static/images/flags/fr.png rename to src/static/images/flags/fr.png diff --git a/static/images/flags/ga.png b/src/static/images/flags/ga.png similarity index 100% rename from static/images/flags/ga.png rename to src/static/images/flags/ga.png diff --git a/static/images/flags/gb.png b/src/static/images/flags/gb.png similarity index 100% rename from static/images/flags/gb.png rename to src/static/images/flags/gb.png diff --git a/static/images/flags/gd.png b/src/static/images/flags/gd.png similarity index 100% rename from static/images/flags/gd.png rename to src/static/images/flags/gd.png diff --git a/static/images/flags/ge.png b/src/static/images/flags/ge.png similarity index 100% rename from static/images/flags/ge.png rename to src/static/images/flags/ge.png diff --git a/static/images/flags/gf.png b/src/static/images/flags/gf.png similarity index 100% rename from static/images/flags/gf.png rename to src/static/images/flags/gf.png diff --git a/static/images/flags/gh.png b/src/static/images/flags/gh.png similarity index 100% rename from static/images/flags/gh.png rename to src/static/images/flags/gh.png diff --git a/static/images/flags/gi.png b/src/static/images/flags/gi.png similarity index 100% rename from static/images/flags/gi.png rename to src/static/images/flags/gi.png diff --git a/static/images/flags/gl.png b/src/static/images/flags/gl.png similarity index 100% rename from static/images/flags/gl.png rename to src/static/images/flags/gl.png diff --git a/static/images/flags/gm.png b/src/static/images/flags/gm.png similarity index 100% rename from static/images/flags/gm.png rename to src/static/images/flags/gm.png diff --git a/static/images/flags/gn.png b/src/static/images/flags/gn.png similarity index 100% rename from static/images/flags/gn.png rename to src/static/images/flags/gn.png diff --git a/static/images/flags/gp.png b/src/static/images/flags/gp.png similarity index 100% rename from static/images/flags/gp.png rename to src/static/images/flags/gp.png diff --git a/static/images/flags/gq.png b/src/static/images/flags/gq.png similarity index 100% rename from static/images/flags/gq.png rename to src/static/images/flags/gq.png diff --git a/static/images/flags/gr.png b/src/static/images/flags/gr.png similarity index 100% rename from static/images/flags/gr.png rename to src/static/images/flags/gr.png diff --git a/static/images/flags/gs.png b/src/static/images/flags/gs.png similarity index 100% rename from static/images/flags/gs.png rename to src/static/images/flags/gs.png diff --git a/static/images/flags/gt.png b/src/static/images/flags/gt.png similarity index 100% rename from static/images/flags/gt.png rename to src/static/images/flags/gt.png diff --git a/static/images/flags/gu.png b/src/static/images/flags/gu.png similarity index 100% rename from static/images/flags/gu.png rename to src/static/images/flags/gu.png diff --git a/static/images/flags/gw.png b/src/static/images/flags/gw.png similarity index 100% rename from static/images/flags/gw.png rename to src/static/images/flags/gw.png diff --git a/static/images/flags/gy.png b/src/static/images/flags/gy.png similarity index 100% rename from static/images/flags/gy.png rename to src/static/images/flags/gy.png diff --git a/static/images/flags/hk.png b/src/static/images/flags/hk.png similarity index 100% rename from static/images/flags/hk.png rename to src/static/images/flags/hk.png diff --git a/static/images/flags/hm.png b/src/static/images/flags/hm.png similarity index 100% rename from static/images/flags/hm.png rename to src/static/images/flags/hm.png diff --git a/static/images/flags/hn.png b/src/static/images/flags/hn.png similarity index 100% rename from static/images/flags/hn.png rename to src/static/images/flags/hn.png diff --git a/static/images/flags/hr.png b/src/static/images/flags/hr.png similarity index 100% rename from static/images/flags/hr.png rename to src/static/images/flags/hr.png diff --git a/static/images/flags/ht.png b/src/static/images/flags/ht.png similarity index 100% rename from static/images/flags/ht.png rename to src/static/images/flags/ht.png diff --git a/static/images/flags/hu.png b/src/static/images/flags/hu.png similarity index 100% rename from static/images/flags/hu.png rename to src/static/images/flags/hu.png diff --git a/static/images/flags/id.png b/src/static/images/flags/id.png similarity index 100% rename from static/images/flags/id.png rename to src/static/images/flags/id.png diff --git a/static/images/flags/ie.png b/src/static/images/flags/ie.png similarity index 100% rename from static/images/flags/ie.png rename to src/static/images/flags/ie.png diff --git a/static/images/flags/il.png b/src/static/images/flags/il.png similarity index 100% rename from static/images/flags/il.png rename to src/static/images/flags/il.png diff --git a/static/images/flags/in.png b/src/static/images/flags/in.png similarity index 100% rename from static/images/flags/in.png rename to src/static/images/flags/in.png diff --git a/static/images/flags/io.png b/src/static/images/flags/io.png similarity index 100% rename from static/images/flags/io.png rename to src/static/images/flags/io.png diff --git a/static/images/flags/iq.png b/src/static/images/flags/iq.png similarity index 100% rename from static/images/flags/iq.png rename to src/static/images/flags/iq.png diff --git a/static/images/flags/ir.png b/src/static/images/flags/ir.png similarity index 100% rename from static/images/flags/ir.png rename to src/static/images/flags/ir.png diff --git a/static/images/flags/is.png b/src/static/images/flags/is.png similarity index 100% rename from static/images/flags/is.png rename to src/static/images/flags/is.png diff --git a/static/images/flags/it.png b/src/static/images/flags/it.png similarity index 100% rename from static/images/flags/it.png rename to src/static/images/flags/it.png diff --git a/static/images/flags/jm.png b/src/static/images/flags/jm.png similarity index 100% rename from static/images/flags/jm.png rename to src/static/images/flags/jm.png diff --git a/static/images/flags/jo.png b/src/static/images/flags/jo.png similarity index 100% rename from static/images/flags/jo.png rename to src/static/images/flags/jo.png diff --git a/static/images/flags/jp.png b/src/static/images/flags/jp.png similarity index 100% rename from static/images/flags/jp.png rename to src/static/images/flags/jp.png diff --git a/static/images/flags/ke.png b/src/static/images/flags/ke.png similarity index 100% rename from static/images/flags/ke.png rename to src/static/images/flags/ke.png diff --git a/static/images/flags/kg.png b/src/static/images/flags/kg.png similarity index 100% rename from static/images/flags/kg.png rename to src/static/images/flags/kg.png diff --git a/static/images/flags/kh.png b/src/static/images/flags/kh.png similarity index 100% rename from static/images/flags/kh.png rename to src/static/images/flags/kh.png diff --git a/static/images/flags/ki.png b/src/static/images/flags/ki.png similarity index 100% rename from static/images/flags/ki.png rename to src/static/images/flags/ki.png diff --git a/static/images/flags/km.png b/src/static/images/flags/km.png similarity index 100% rename from static/images/flags/km.png rename to src/static/images/flags/km.png diff --git a/static/images/flags/kn.png b/src/static/images/flags/kn.png similarity index 100% rename from static/images/flags/kn.png rename to src/static/images/flags/kn.png diff --git a/static/images/flags/kp.png b/src/static/images/flags/kp.png similarity index 100% rename from static/images/flags/kp.png rename to src/static/images/flags/kp.png diff --git a/static/images/flags/kr.png b/src/static/images/flags/kr.png similarity index 100% rename from static/images/flags/kr.png rename to src/static/images/flags/kr.png diff --git a/static/images/flags/kw.png b/src/static/images/flags/kw.png similarity index 100% rename from static/images/flags/kw.png rename to src/static/images/flags/kw.png diff --git a/static/images/flags/ky.png b/src/static/images/flags/ky.png similarity index 100% rename from static/images/flags/ky.png rename to src/static/images/flags/ky.png diff --git a/static/images/flags/kz.png b/src/static/images/flags/kz.png similarity index 100% rename from static/images/flags/kz.png rename to src/static/images/flags/kz.png diff --git a/static/images/flags/la.png b/src/static/images/flags/la.png similarity index 100% rename from static/images/flags/la.png rename to src/static/images/flags/la.png diff --git a/static/images/flags/lb.png b/src/static/images/flags/lb.png similarity index 100% rename from static/images/flags/lb.png rename to src/static/images/flags/lb.png diff --git a/static/images/flags/lc.png b/src/static/images/flags/lc.png similarity index 100% rename from static/images/flags/lc.png rename to src/static/images/flags/lc.png diff --git a/static/images/flags/li.png b/src/static/images/flags/li.png similarity index 100% rename from static/images/flags/li.png rename to src/static/images/flags/li.png diff --git a/static/images/flags/lk.png b/src/static/images/flags/lk.png similarity index 100% rename from static/images/flags/lk.png rename to src/static/images/flags/lk.png diff --git a/static/images/flags/lr.png b/src/static/images/flags/lr.png similarity index 100% rename from static/images/flags/lr.png rename to src/static/images/flags/lr.png diff --git a/static/images/flags/ls.png b/src/static/images/flags/ls.png similarity index 100% rename from static/images/flags/ls.png rename to src/static/images/flags/ls.png diff --git a/static/images/flags/lt.png b/src/static/images/flags/lt.png similarity index 100% rename from static/images/flags/lt.png rename to src/static/images/flags/lt.png diff --git a/static/images/flags/lu.png b/src/static/images/flags/lu.png similarity index 100% rename from static/images/flags/lu.png rename to src/static/images/flags/lu.png diff --git a/static/images/flags/lv.png b/src/static/images/flags/lv.png similarity index 100% rename from static/images/flags/lv.png rename to src/static/images/flags/lv.png diff --git a/static/images/flags/ly.png b/src/static/images/flags/ly.png similarity index 100% rename from static/images/flags/ly.png rename to src/static/images/flags/ly.png diff --git a/static/images/flags/ma.png b/src/static/images/flags/ma.png similarity index 100% rename from static/images/flags/ma.png rename to src/static/images/flags/ma.png diff --git a/static/images/flags/mc.png b/src/static/images/flags/mc.png similarity index 100% rename from static/images/flags/mc.png rename to src/static/images/flags/mc.png diff --git a/static/images/flags/md.png b/src/static/images/flags/md.png similarity index 100% rename from static/images/flags/md.png rename to src/static/images/flags/md.png diff --git a/static/images/flags/me.png b/src/static/images/flags/me.png similarity index 100% rename from static/images/flags/me.png rename to src/static/images/flags/me.png diff --git a/static/images/flags/mg.png b/src/static/images/flags/mg.png similarity index 100% rename from static/images/flags/mg.png rename to src/static/images/flags/mg.png diff --git a/static/images/flags/mh.png b/src/static/images/flags/mh.png similarity index 100% rename from static/images/flags/mh.png rename to src/static/images/flags/mh.png diff --git a/static/images/flags/mk.png b/src/static/images/flags/mk.png similarity index 100% rename from static/images/flags/mk.png rename to src/static/images/flags/mk.png diff --git a/static/images/flags/ml.png b/src/static/images/flags/ml.png similarity index 100% rename from static/images/flags/ml.png rename to src/static/images/flags/ml.png diff --git a/static/images/flags/mm.png b/src/static/images/flags/mm.png similarity index 100% rename from static/images/flags/mm.png rename to src/static/images/flags/mm.png diff --git a/static/images/flags/mn.png b/src/static/images/flags/mn.png similarity index 100% rename from static/images/flags/mn.png rename to src/static/images/flags/mn.png diff --git a/static/images/flags/mo.png b/src/static/images/flags/mo.png similarity index 100% rename from static/images/flags/mo.png rename to src/static/images/flags/mo.png diff --git a/static/images/flags/mp.png b/src/static/images/flags/mp.png similarity index 100% rename from static/images/flags/mp.png rename to src/static/images/flags/mp.png diff --git a/static/images/flags/mq.png b/src/static/images/flags/mq.png similarity index 100% rename from static/images/flags/mq.png rename to src/static/images/flags/mq.png diff --git a/static/images/flags/mr.png b/src/static/images/flags/mr.png similarity index 100% rename from static/images/flags/mr.png rename to src/static/images/flags/mr.png diff --git a/static/images/flags/ms.png b/src/static/images/flags/ms.png similarity index 100% rename from static/images/flags/ms.png rename to src/static/images/flags/ms.png diff --git a/static/images/flags/mt.png b/src/static/images/flags/mt.png similarity index 100% rename from static/images/flags/mt.png rename to src/static/images/flags/mt.png diff --git a/static/images/flags/mu.png b/src/static/images/flags/mu.png similarity index 100% rename from static/images/flags/mu.png rename to src/static/images/flags/mu.png diff --git a/static/images/flags/mv.png b/src/static/images/flags/mv.png similarity index 100% rename from static/images/flags/mv.png rename to src/static/images/flags/mv.png diff --git a/static/images/flags/mw.png b/src/static/images/flags/mw.png similarity index 100% rename from static/images/flags/mw.png rename to src/static/images/flags/mw.png diff --git a/static/images/flags/mx.png b/src/static/images/flags/mx.png similarity index 100% rename from static/images/flags/mx.png rename to src/static/images/flags/mx.png diff --git a/static/images/flags/my.png b/src/static/images/flags/my.png similarity index 100% rename from static/images/flags/my.png rename to src/static/images/flags/my.png diff --git a/static/images/flags/mz.png b/src/static/images/flags/mz.png similarity index 100% rename from static/images/flags/mz.png rename to src/static/images/flags/mz.png diff --git a/static/images/flags/na.png b/src/static/images/flags/na.png similarity index 100% rename from static/images/flags/na.png rename to src/static/images/flags/na.png diff --git a/static/images/flags/nc.png b/src/static/images/flags/nc.png similarity index 100% rename from static/images/flags/nc.png rename to src/static/images/flags/nc.png diff --git a/static/images/flags/ne.png b/src/static/images/flags/ne.png similarity index 100% rename from static/images/flags/ne.png rename to src/static/images/flags/ne.png diff --git a/static/images/flags/nf.png b/src/static/images/flags/nf.png similarity index 100% rename from static/images/flags/nf.png rename to src/static/images/flags/nf.png diff --git a/static/images/flags/ng.png b/src/static/images/flags/ng.png similarity index 100% rename from static/images/flags/ng.png rename to src/static/images/flags/ng.png diff --git a/static/images/flags/ni.png b/src/static/images/flags/ni.png similarity index 100% rename from static/images/flags/ni.png rename to src/static/images/flags/ni.png diff --git a/static/images/flags/nl.png b/src/static/images/flags/nl.png similarity index 100% rename from static/images/flags/nl.png rename to src/static/images/flags/nl.png diff --git a/static/images/flags/no.png b/src/static/images/flags/no.png similarity index 100% rename from static/images/flags/no.png rename to src/static/images/flags/no.png diff --git a/static/images/flags/np.png b/src/static/images/flags/np.png similarity index 100% rename from static/images/flags/np.png rename to src/static/images/flags/np.png diff --git a/static/images/flags/nr.png b/src/static/images/flags/nr.png similarity index 100% rename from static/images/flags/nr.png rename to src/static/images/flags/nr.png diff --git a/static/images/flags/nu.png b/src/static/images/flags/nu.png similarity index 100% rename from static/images/flags/nu.png rename to src/static/images/flags/nu.png diff --git a/static/images/flags/nz.png b/src/static/images/flags/nz.png similarity index 100% rename from static/images/flags/nz.png rename to src/static/images/flags/nz.png diff --git a/static/images/flags/om.png b/src/static/images/flags/om.png similarity index 100% rename from static/images/flags/om.png rename to src/static/images/flags/om.png diff --git a/static/images/flags/pa.png b/src/static/images/flags/pa.png similarity index 100% rename from static/images/flags/pa.png rename to src/static/images/flags/pa.png diff --git a/static/images/flags/pe.png b/src/static/images/flags/pe.png similarity index 100% rename from static/images/flags/pe.png rename to src/static/images/flags/pe.png diff --git a/static/images/flags/pf.png b/src/static/images/flags/pf.png similarity index 100% rename from static/images/flags/pf.png rename to src/static/images/flags/pf.png diff --git a/static/images/flags/pg.png b/src/static/images/flags/pg.png similarity index 100% rename from static/images/flags/pg.png rename to src/static/images/flags/pg.png diff --git a/static/images/flags/ph.png b/src/static/images/flags/ph.png similarity index 100% rename from static/images/flags/ph.png rename to src/static/images/flags/ph.png diff --git a/static/images/flags/pk.png b/src/static/images/flags/pk.png similarity index 100% rename from static/images/flags/pk.png rename to src/static/images/flags/pk.png diff --git a/static/images/flags/pl.png b/src/static/images/flags/pl.png similarity index 100% rename from static/images/flags/pl.png rename to src/static/images/flags/pl.png diff --git a/static/images/flags/pm.png b/src/static/images/flags/pm.png similarity index 100% rename from static/images/flags/pm.png rename to src/static/images/flags/pm.png diff --git a/static/images/flags/pn.png b/src/static/images/flags/pn.png similarity index 100% rename from static/images/flags/pn.png rename to src/static/images/flags/pn.png diff --git a/static/images/flags/pr.png b/src/static/images/flags/pr.png similarity index 100% rename from static/images/flags/pr.png rename to src/static/images/flags/pr.png diff --git a/static/images/flags/ps.png b/src/static/images/flags/ps.png similarity index 100% rename from static/images/flags/ps.png rename to src/static/images/flags/ps.png diff --git a/static/images/flags/pt.png b/src/static/images/flags/pt.png similarity index 100% rename from static/images/flags/pt.png rename to src/static/images/flags/pt.png diff --git a/static/images/flags/pw.png b/src/static/images/flags/pw.png similarity index 100% rename from static/images/flags/pw.png rename to src/static/images/flags/pw.png diff --git a/static/images/flags/py.png b/src/static/images/flags/py.png similarity index 100% rename from static/images/flags/py.png rename to src/static/images/flags/py.png diff --git a/static/images/flags/qa.png b/src/static/images/flags/qa.png similarity index 100% rename from static/images/flags/qa.png rename to src/static/images/flags/qa.png diff --git a/static/images/flags/re.png b/src/static/images/flags/re.png similarity index 100% rename from static/images/flags/re.png rename to src/static/images/flags/re.png diff --git a/static/images/flags/ro.png b/src/static/images/flags/ro.png similarity index 100% rename from static/images/flags/ro.png rename to src/static/images/flags/ro.png diff --git a/static/images/flags/rs.png b/src/static/images/flags/rs.png similarity index 100% rename from static/images/flags/rs.png rename to src/static/images/flags/rs.png diff --git a/static/images/flags/ru.png b/src/static/images/flags/ru.png similarity index 100% rename from static/images/flags/ru.png rename to src/static/images/flags/ru.png diff --git a/static/images/flags/rw.png b/src/static/images/flags/rw.png similarity index 100% rename from static/images/flags/rw.png rename to src/static/images/flags/rw.png diff --git a/static/images/flags/sa.png b/src/static/images/flags/sa.png similarity index 100% rename from static/images/flags/sa.png rename to src/static/images/flags/sa.png diff --git a/static/images/flags/sb.png b/src/static/images/flags/sb.png similarity index 100% rename from static/images/flags/sb.png rename to src/static/images/flags/sb.png diff --git a/static/images/flags/sc.png b/src/static/images/flags/sc.png similarity index 100% rename from static/images/flags/sc.png rename to src/static/images/flags/sc.png diff --git a/static/images/flags/scotland.png b/src/static/images/flags/scotland.png similarity index 100% rename from static/images/flags/scotland.png rename to src/static/images/flags/scotland.png diff --git a/static/images/flags/sd.png b/src/static/images/flags/sd.png similarity index 100% rename from static/images/flags/sd.png rename to src/static/images/flags/sd.png diff --git a/static/images/flags/se.png b/src/static/images/flags/se.png similarity index 100% rename from static/images/flags/se.png rename to src/static/images/flags/se.png diff --git a/static/images/flags/sg.png b/src/static/images/flags/sg.png similarity index 100% rename from static/images/flags/sg.png rename to src/static/images/flags/sg.png diff --git a/static/images/flags/sh.png b/src/static/images/flags/sh.png similarity index 100% rename from static/images/flags/sh.png rename to src/static/images/flags/sh.png diff --git a/static/images/flags/si.png b/src/static/images/flags/si.png similarity index 100% rename from static/images/flags/si.png rename to src/static/images/flags/si.png diff --git a/static/images/flags/sj.png b/src/static/images/flags/sj.png similarity index 100% rename from static/images/flags/sj.png rename to src/static/images/flags/sj.png diff --git a/static/images/flags/sk.png b/src/static/images/flags/sk.png similarity index 100% rename from static/images/flags/sk.png rename to src/static/images/flags/sk.png diff --git a/static/images/flags/sl.png b/src/static/images/flags/sl.png similarity index 100% rename from static/images/flags/sl.png rename to src/static/images/flags/sl.png diff --git a/static/images/flags/sm.png b/src/static/images/flags/sm.png similarity index 100% rename from static/images/flags/sm.png rename to src/static/images/flags/sm.png diff --git a/static/images/flags/sn.png b/src/static/images/flags/sn.png similarity index 100% rename from static/images/flags/sn.png rename to src/static/images/flags/sn.png diff --git a/static/images/flags/so.png b/src/static/images/flags/so.png similarity index 100% rename from static/images/flags/so.png rename to src/static/images/flags/so.png diff --git a/static/images/flags/sr.png b/src/static/images/flags/sr.png similarity index 100% rename from static/images/flags/sr.png rename to src/static/images/flags/sr.png diff --git a/static/images/flags/st.png b/src/static/images/flags/st.png similarity index 100% rename from static/images/flags/st.png rename to src/static/images/flags/st.png diff --git a/static/images/flags/sv.png b/src/static/images/flags/sv.png similarity index 100% rename from static/images/flags/sv.png rename to src/static/images/flags/sv.png diff --git a/static/images/flags/sy.png b/src/static/images/flags/sy.png similarity index 100% rename from static/images/flags/sy.png rename to src/static/images/flags/sy.png diff --git a/static/images/flags/sz.png b/src/static/images/flags/sz.png similarity index 100% rename from static/images/flags/sz.png rename to src/static/images/flags/sz.png diff --git a/static/images/flags/tc.png b/src/static/images/flags/tc.png similarity index 100% rename from static/images/flags/tc.png rename to src/static/images/flags/tc.png diff --git a/static/images/flags/td.png b/src/static/images/flags/td.png similarity index 100% rename from static/images/flags/td.png rename to src/static/images/flags/td.png diff --git a/static/images/flags/tf.png b/src/static/images/flags/tf.png similarity index 100% rename from static/images/flags/tf.png rename to src/static/images/flags/tf.png diff --git a/static/images/flags/tg.png b/src/static/images/flags/tg.png similarity index 100% rename from static/images/flags/tg.png rename to src/static/images/flags/tg.png diff --git a/static/images/flags/th.png b/src/static/images/flags/th.png similarity index 100% rename from static/images/flags/th.png rename to src/static/images/flags/th.png diff --git a/static/images/flags/tj.png b/src/static/images/flags/tj.png similarity index 100% rename from static/images/flags/tj.png rename to src/static/images/flags/tj.png diff --git a/static/images/flags/tk.png b/src/static/images/flags/tk.png similarity index 100% rename from static/images/flags/tk.png rename to src/static/images/flags/tk.png diff --git a/static/images/flags/tl.png b/src/static/images/flags/tl.png similarity index 100% rename from static/images/flags/tl.png rename to src/static/images/flags/tl.png diff --git a/static/images/flags/tm.png b/src/static/images/flags/tm.png similarity index 100% rename from static/images/flags/tm.png rename to src/static/images/flags/tm.png diff --git a/static/images/flags/tn.png b/src/static/images/flags/tn.png similarity index 100% rename from static/images/flags/tn.png rename to src/static/images/flags/tn.png diff --git a/static/images/flags/to.png b/src/static/images/flags/to.png similarity index 100% rename from static/images/flags/to.png rename to src/static/images/flags/to.png diff --git a/static/images/flags/tr.png b/src/static/images/flags/tr.png similarity index 100% rename from static/images/flags/tr.png rename to src/static/images/flags/tr.png diff --git a/static/images/flags/tt.png b/src/static/images/flags/tt.png similarity index 100% rename from static/images/flags/tt.png rename to src/static/images/flags/tt.png diff --git a/static/images/flags/tv.png b/src/static/images/flags/tv.png similarity index 100% rename from static/images/flags/tv.png rename to src/static/images/flags/tv.png diff --git a/static/images/flags/tw.png b/src/static/images/flags/tw.png similarity index 100% rename from static/images/flags/tw.png rename to src/static/images/flags/tw.png diff --git a/static/images/flags/tz.png b/src/static/images/flags/tz.png similarity index 100% rename from static/images/flags/tz.png rename to src/static/images/flags/tz.png diff --git a/static/images/flags/ua.png b/src/static/images/flags/ua.png similarity index 100% rename from static/images/flags/ua.png rename to src/static/images/flags/ua.png diff --git a/static/images/flags/ug.png b/src/static/images/flags/ug.png similarity index 100% rename from static/images/flags/ug.png rename to src/static/images/flags/ug.png diff --git a/static/images/flags/um.png b/src/static/images/flags/um.png similarity index 100% rename from static/images/flags/um.png rename to src/static/images/flags/um.png diff --git a/static/images/flags/unknown.png b/src/static/images/flags/unknown.png similarity index 100% rename from static/images/flags/unknown.png rename to src/static/images/flags/unknown.png diff --git a/static/images/flags/us.png b/src/static/images/flags/us.png similarity index 100% rename from static/images/flags/us.png rename to src/static/images/flags/us.png diff --git a/static/images/flags/uy.png b/src/static/images/flags/uy.png similarity index 100% rename from static/images/flags/uy.png rename to src/static/images/flags/uy.png diff --git a/static/images/flags/uz.png b/src/static/images/flags/uz.png similarity index 100% rename from static/images/flags/uz.png rename to src/static/images/flags/uz.png diff --git a/static/images/flags/va.png b/src/static/images/flags/va.png similarity index 100% rename from static/images/flags/va.png rename to src/static/images/flags/va.png diff --git a/static/images/flags/vc.png b/src/static/images/flags/vc.png similarity index 100% rename from static/images/flags/vc.png rename to src/static/images/flags/vc.png diff --git a/static/images/flags/ve.png b/src/static/images/flags/ve.png similarity index 100% rename from static/images/flags/ve.png rename to src/static/images/flags/ve.png diff --git a/static/images/flags/vg.png b/src/static/images/flags/vg.png similarity index 100% rename from static/images/flags/vg.png rename to src/static/images/flags/vg.png diff --git a/static/images/flags/vi.png b/src/static/images/flags/vi.png similarity index 100% rename from static/images/flags/vi.png rename to src/static/images/flags/vi.png diff --git a/static/images/flags/vn.png b/src/static/images/flags/vn.png similarity index 100% rename from static/images/flags/vn.png rename to src/static/images/flags/vn.png diff --git a/static/images/flags/vu.png b/src/static/images/flags/vu.png similarity index 100% rename from static/images/flags/vu.png rename to src/static/images/flags/vu.png diff --git a/static/images/flags/wales.png b/src/static/images/flags/wales.png similarity index 100% rename from static/images/flags/wales.png rename to src/static/images/flags/wales.png diff --git a/static/images/flags/wf.png b/src/static/images/flags/wf.png similarity index 100% rename from static/images/flags/wf.png rename to src/static/images/flags/wf.png diff --git a/static/images/flags/ws.png b/src/static/images/flags/ws.png similarity index 100% rename from static/images/flags/ws.png rename to src/static/images/flags/ws.png diff --git a/static/images/flags/ye.png b/src/static/images/flags/ye.png similarity index 100% rename from static/images/flags/ye.png rename to src/static/images/flags/ye.png diff --git a/static/images/flags/yt.png b/src/static/images/flags/yt.png similarity index 100% rename from static/images/flags/yt.png rename to src/static/images/flags/yt.png diff --git a/static/images/flags/za.png b/src/static/images/flags/za.png similarity index 100% rename from static/images/flags/za.png rename to src/static/images/flags/za.png diff --git a/static/images/flags/zm.png b/src/static/images/flags/zm.png similarity index 100% rename from static/images/flags/zm.png rename to src/static/images/flags/zm.png diff --git a/static/images/flags/zw.png b/src/static/images/flags/zw.png similarity index 100% rename from static/images/flags/zw.png rename to src/static/images/flags/zw.png diff --git a/static/images/ft.png b/src/static/images/ft.png similarity index 100% rename from static/images/ft.png rename to src/static/images/ft.png diff --git a/static/images/icons/bus-pci.png b/src/static/images/icons/bus-pci.png similarity index 100% rename from static/images/icons/bus-pci.png rename to src/static/images/icons/bus-pci.png diff --git a/static/images/icons/bus-usb.png b/src/static/images/icons/bus-usb.png similarity index 100% rename from static/images/icons/bus-usb.png rename to src/static/images/icons/bus-usb.png diff --git a/static/images/icons/community.png b/src/static/images/icons/community.png similarity index 100% rename from static/images/icons/community.png rename to src/static/images/icons/community.png diff --git a/static/images/icons/development.png b/src/static/images/icons/development.png similarity index 100% rename from static/images/icons/development.png rename to src/static/images/icons/development.png diff --git a/static/images/icons/firewall.png b/src/static/images/icons/firewall.png similarity index 100% rename from static/images/icons/firewall.png rename to src/static/images/icons/firewall.png diff --git a/static/images/icons/flexibility.png b/src/static/images/icons/flexibility.png similarity index 100% rename from static/images/icons/flexibility.png rename to src/static/images/icons/flexibility.png diff --git a/static/images/icons/forum.png b/src/static/images/icons/forum.png similarity index 100% rename from static/images/icons/forum.png rename to src/static/images/icons/forum.png diff --git a/static/images/icons/hardware.png b/src/static/images/icons/hardware.png similarity index 100% rename from static/images/icons/hardware.png rename to src/static/images/icons/hardware.png diff --git a/static/images/icons/ipfire.png b/src/static/images/icons/ipfire.png similarity index 100% rename from static/images/icons/ipfire.png rename to src/static/images/icons/ipfire.png diff --git a/static/images/icons/ipfire_sw.png b/src/static/images/icons/ipfire_sw.png similarity index 100% rename from static/images/icons/ipfire_sw.png rename to src/static/images/icons/ipfire_sw.png diff --git a/static/images/icons/irc.png b/src/static/images/icons/irc.png similarity index 100% rename from static/images/icons/irc.png rename to src/static/images/icons/irc.png diff --git a/static/images/icons/itsfree.png b/src/static/images/icons/itsfree.png similarity index 100% rename from static/images/icons/itsfree.png rename to src/static/images/icons/itsfree.png diff --git a/static/images/icons/pakfire.png b/src/static/images/icons/pakfire.png similarity index 100% rename from static/images/icons/pakfire.png rename to src/static/images/icons/pakfire.png diff --git a/static/images/icons/security.png b/src/static/images/icons/security.png similarity index 100% rename from static/images/icons/security.png rename to src/static/images/icons/security.png diff --git a/static/images/icons/security_old.png b/src/static/images/icons/security_old.png similarity index 100% rename from static/images/icons/security_old.png rename to src/static/images/icons/security_old.png diff --git a/static/images/icons/social/facebook.png b/src/static/images/icons/social/facebook.png similarity index 100% rename from static/images/icons/social/facebook.png rename to src/static/images/icons/social/facebook.png diff --git a/static/images/icons/social/rss.png b/src/static/images/icons/social/rss.png similarity index 100% rename from static/images/icons/social/rss.png rename to src/static/images/icons/social/rss.png diff --git a/static/images/icons/social/twitter.png b/src/static/images/icons/social/twitter.png similarity index 100% rename from static/images/icons/social/twitter.png rename to src/static/images/icons/social/twitter.png diff --git a/static/images/icons/virtualization.png b/src/static/images/icons/virtualization.png similarity index 100% rename from static/images/icons/virtualization.png rename to src/static/images/icons/virtualization.png diff --git a/static/images/icons/vpn.png b/src/static/images/icons/vpn.png similarity index 100% rename from static/images/icons/vpn.png rename to src/static/images/icons/vpn.png diff --git a/static/images/icons/wiki.png b/src/static/images/icons/wiki.png similarity index 100% rename from static/images/icons/wiki.png rename to src/static/images/icons/wiki.png diff --git a/static/images/ipfire_download.png b/src/static/images/ipfire_download.png similarity index 100% rename from static/images/ipfire_download.png rename to src/static/images/ipfire_download.png diff --git a/static/images/lf1.png b/src/static/images/lf1.png similarity index 100% rename from static/images/lf1.png rename to src/static/images/lf1.png diff --git a/static/images/lf2.png b/src/static/images/lf2.png similarity index 100% rename from static/images/lf2.png rename to src/static/images/lf2.png diff --git a/static/images/lf3.png b/src/static/images/lf3.png similarity index 100% rename from static/images/lf3.png rename to src/static/images/lf3.png diff --git a/static/images/lightbox/lightbox-blank.gif b/src/static/images/lightbox/lightbox-blank.gif similarity index 100% rename from static/images/lightbox/lightbox-blank.gif rename to src/static/images/lightbox/lightbox-blank.gif diff --git a/static/images/lightbox/lightbox-btn-close.gif b/src/static/images/lightbox/lightbox-btn-close.gif similarity index 100% rename from static/images/lightbox/lightbox-btn-close.gif rename to src/static/images/lightbox/lightbox-btn-close.gif diff --git a/static/images/lightbox/lightbox-btn-next.gif b/src/static/images/lightbox/lightbox-btn-next.gif similarity index 100% rename from static/images/lightbox/lightbox-btn-next.gif rename to src/static/images/lightbox/lightbox-btn-next.gif diff --git a/static/images/lightbox/lightbox-btn-prev.gif b/src/static/images/lightbox/lightbox-btn-prev.gif similarity index 100% rename from static/images/lightbox/lightbox-btn-prev.gif rename to src/static/images/lightbox/lightbox-btn-prev.gif diff --git a/static/images/lightbox/lightbox-ico-loading.gif b/src/static/images/lightbox/lightbox-ico-loading.gif similarity index 100% rename from static/images/lightbox/lightbox-ico-loading.gif rename to src/static/images/lightbox/lightbox-ico-loading.gif diff --git a/static/images/links.png b/src/static/images/links.png similarity index 100% rename from static/images/links.png rename to src/static/images/links.png diff --git a/static/images/linux_icon.png b/src/static/images/linux_icon.png similarity index 100% rename from static/images/linux_icon.png rename to src/static/images/linux_icon.png diff --git a/static/images/linux_new_media_ag.jpg b/src/static/images/linux_new_media_ag.jpg similarity index 100% rename from static/images/linux_new_media_ag.jpg rename to src/static/images/linux_new_media_ag.jpg diff --git a/static/images/logo.png b/src/static/images/logo.png similarity index 100% rename from static/images/logo.png rename to src/static/images/logo.png diff --git a/static/images/mac_icon.png b/src/static/images/mac_icon.png similarity index 100% rename from static/images/mac_icon.png rename to src/static/images/mac_icon.png diff --git a/static/images/mnu2l.png b/src/static/images/mnu2l.png similarity index 100% rename from static/images/mnu2l.png rename to src/static/images/mnu2l.png diff --git a/static/images/mnu2r.png b/src/static/images/mnu2r.png similarity index 100% rename from static/images/mnu2r.png rename to src/static/images/mnu2r.png diff --git a/static/images/mnu2t1.png b/src/static/images/mnu2t1.png similarity index 100% rename from static/images/mnu2t1.png rename to src/static/images/mnu2t1.png diff --git a/static/images/mnu2t2.png b/src/static/images/mnu2t2.png similarity index 100% rename from static/images/mnu2t2.png rename to src/static/images/mnu2t2.png diff --git a/static/images/n1.gif b/src/static/images/n1.gif similarity index 100% rename from static/images/n1.gif rename to src/static/images/n1.gif diff --git a/static/images/n2.gif b/src/static/images/n2.gif similarity index 100% rename from static/images/n2.gif rename to src/static/images/n2.gif diff --git a/static/images/n3.gif b/src/static/images/n3.gif similarity index 100% rename from static/images/n3.gif rename to src/static/images/n3.gif diff --git a/static/images/n4.gif b/src/static/images/n4.gif similarity index 100% rename from static/images/n4.gif rename to src/static/images/n4.gif diff --git a/static/images/n5.gif b/src/static/images/n5.gif similarity index 100% rename from static/images/n5.gif rename to src/static/images/n5.gif diff --git a/static/images/n6.gif b/src/static/images/n6.gif similarity index 100% rename from static/images/n6.gif rename to src/static/images/n6.gif diff --git a/static/images/paypal-folder.png b/src/static/images/paypal-folder.png similarity index 100% rename from static/images/paypal-folder.png rename to src/static/images/paypal-folder.png diff --git a/static/images/pic.gif b/src/static/images/pic.gif similarity index 100% rename from static/images/pic.gif rename to src/static/images/pic.gif diff --git a/static/images/pic2.png b/src/static/images/pic2.png similarity index 100% rename from static/images/pic2.png rename to src/static/images/pic2.png diff --git a/static/images/portrait.gif b/src/static/images/portrait.gif similarity index 100% rename from static/images/portrait.gif rename to src/static/images/portrait.gif diff --git a/static/images/progressbar.gif b/src/static/images/progressbar.gif similarity index 100% rename from static/images/progressbar.gif rename to src/static/images/progressbar.gif diff --git a/static/images/progressbg_black.gif b/src/static/images/progressbg_black.gif similarity index 100% rename from static/images/progressbg_black.gif rename to src/static/images/progressbg_black.gif diff --git a/static/images/progressbg_green.gif b/src/static/images/progressbg_green.gif similarity index 100% rename from static/images/progressbg_green.gif rename to src/static/images/progressbg_green.gif diff --git a/static/images/progressbg_orange.gif b/src/static/images/progressbg_orange.gif similarity index 100% rename from static/images/progressbg_orange.gif rename to src/static/images/progressbg_orange.gif diff --git a/static/images/progressbg_red.gif b/src/static/images/progressbg_red.gif similarity index 100% rename from static/images/progressbg_red.gif rename to src/static/images/progressbg_red.gif diff --git a/static/images/progressbg_yellow.gif b/src/static/images/progressbg_yellow.gif similarity index 100% rename from static/images/progressbg_yellow.gif rename to src/static/images/progressbg_yellow.gif diff --git a/static/images/pxe.png b/src/static/images/pxe.png similarity index 100% rename from static/images/pxe.png rename to src/static/images/pxe.png diff --git a/static/images/screens/de/final/connsched.png b/src/static/images/screens/de/final/connsched.png similarity index 100% rename from static/images/screens/de/final/connsched.png rename to src/static/images/screens/de/final/connsched.png diff --git a/static/images/screens/de/final/disk.png b/src/static/images/screens/de/final/disk.png similarity index 100% rename from static/images/screens/de/final/disk.png rename to src/static/images/screens/de/final/disk.png diff --git a/static/images/screens/de/final/dyndns.png b/src/static/images/screens/de/final/dyndns.png similarity index 100% rename from static/images/screens/de/final/dyndns.png rename to src/static/images/screens/de/final/dyndns.png diff --git a/static/images/screens/de/final/fwdiag.png b/src/static/images/screens/de/final/fwdiag.png similarity index 100% rename from static/images/screens/de/final/fwdiag.png rename to src/static/images/screens/de/final/fwdiag.png diff --git a/static/images/screens/de/final/fwlog-port.png b/src/static/images/screens/de/final/fwlog-port.png similarity index 100% rename from static/images/screens/de/final/fwlog-port.png rename to src/static/images/screens/de/final/fwlog-port.png diff --git a/static/images/screens/de/final/fwlog.png b/src/static/images/screens/de/final/fwlog.png similarity index 100% rename from static/images/screens/de/final/fwlog.png rename to src/static/images/screens/de/final/fwlog.png diff --git a/static/images/screens/de/final/ids.png b/src/static/images/screens/de/final/ids.png similarity index 100% rename from static/images/screens/de/final/ids.png rename to src/static/images/screens/de/final/ids.png diff --git a/static/images/screens/de/final/index.png b/src/static/images/screens/de/final/index.png similarity index 100% rename from static/images/screens/de/final/index.png rename to src/static/images/screens/de/final/index.png diff --git a/static/images/screens/de/final/ipsec.png b/src/static/images/screens/de/final/ipsec.png similarity index 100% rename from static/images/screens/de/final/ipsec.png rename to src/static/images/screens/de/final/ipsec.png diff --git a/static/images/screens/de/final/nettraffic.png b/src/static/images/screens/de/final/nettraffic.png similarity index 100% rename from static/images/screens/de/final/nettraffic.png rename to src/static/images/screens/de/final/nettraffic.png diff --git a/static/images/screens/de/final/nw-internal.png b/src/static/images/screens/de/final/nw-internal.png similarity index 100% rename from static/images/screens/de/final/nw-internal.png rename to src/static/images/screens/de/final/nw-internal.png diff --git a/static/images/screens/de/final/outgoingfw-1.png b/src/static/images/screens/de/final/outgoingfw-1.png similarity index 100% rename from static/images/screens/de/final/outgoingfw-1.png rename to src/static/images/screens/de/final/outgoingfw-1.png diff --git a/static/images/screens/de/final/outgoingfw-2.png b/src/static/images/screens/de/final/outgoingfw-2.png similarity index 100% rename from static/images/screens/de/final/outgoingfw-2.png rename to src/static/images/screens/de/final/outgoingfw-2.png diff --git a/static/images/screens/de/final/pakfire-1.png b/src/static/images/screens/de/final/pakfire-1.png similarity index 100% rename from static/images/screens/de/final/pakfire-1.png rename to src/static/images/screens/de/final/pakfire-1.png diff --git a/static/images/screens/de/final/pakfire-2.png b/src/static/images/screens/de/final/pakfire-2.png similarity index 100% rename from static/images/screens/de/final/pakfire-2.png rename to src/static/images/screens/de/final/pakfire-2.png diff --git a/static/images/screens/de/final/proxy.png b/src/static/images/screens/de/final/proxy.png similarity index 100% rename from static/images/screens/de/final/proxy.png rename to src/static/images/screens/de/final/proxy.png diff --git a/static/images/screens/de/final/qos-2.png b/src/static/images/screens/de/final/qos-2.png similarity index 100% rename from static/images/screens/de/final/qos-2.png rename to src/static/images/screens/de/final/qos-2.png diff --git a/static/images/screens/de/final/samba.png b/src/static/images/screens/de/final/samba.png similarity index 100% rename from static/images/screens/de/final/samba.png rename to src/static/images/screens/de/final/samba.png diff --git a/static/images/screens/de/final/system.png b/src/static/images/screens/de/final/system.png similarity index 100% rename from static/images/screens/de/final/system.png rename to src/static/images/screens/de/final/system.png diff --git a/static/images/screens/de/final/thumb/fwlog-port.png b/src/static/images/screens/de/final/thumb/fwlog-port.png similarity index 100% rename from static/images/screens/de/final/thumb/fwlog-port.png rename to src/static/images/screens/de/final/thumb/fwlog-port.png diff --git a/static/images/screens/de/final/thumb/index.png b/src/static/images/screens/de/final/thumb/index.png similarity index 100% rename from static/images/screens/de/final/thumb/index.png rename to src/static/images/screens/de/final/thumb/index.png diff --git a/static/images/screens/de/final/thumb/ipsec.png b/src/static/images/screens/de/final/thumb/ipsec.png similarity index 100% rename from static/images/screens/de/final/thumb/ipsec.png rename to src/static/images/screens/de/final/thumb/ipsec.png diff --git a/static/images/screens/de/final/thumb/pakfire-1.png b/src/static/images/screens/de/final/thumb/pakfire-1.png similarity index 100% rename from static/images/screens/de/final/thumb/pakfire-1.png rename to src/static/images/screens/de/final/thumb/pakfire-1.png diff --git a/static/images/screens/de/final/thumb/proxy.png b/src/static/images/screens/de/final/thumb/proxy.png similarity index 100% rename from static/images/screens/de/final/thumb/proxy.png rename to src/static/images/screens/de/final/thumb/proxy.png diff --git a/static/images/screens/de/final/thumb/qos-2.png b/src/static/images/screens/de/final/thumb/qos-2.png similarity index 100% rename from static/images/screens/de/final/thumb/qos-2.png rename to src/static/images/screens/de/final/thumb/qos-2.png diff --git a/static/images/screens/de/final/thumb/system.png b/src/static/images/screens/de/final/thumb/system.png similarity index 100% rename from static/images/screens/de/final/thumb/system.png rename to src/static/images/screens/de/final/thumb/system.png diff --git a/static/images/screens/de/final/xtaccess.png b/src/static/images/screens/de/final/xtaccess.png similarity index 100% rename from static/images/screens/de/final/xtaccess.png rename to src/static/images/screens/de/final/xtaccess.png diff --git a/static/images/screenshots/en/concept/index-detail-1.png b/src/static/images/screenshots/en/concept/index-detail-1.png similarity index 100% rename from static/images/screenshots/en/concept/index-detail-1.png rename to src/static/images/screenshots/en/concept/index-detail-1.png diff --git a/static/images/screenshots/en/concept/index-detail-1_thumb.png b/src/static/images/screenshots/en/concept/index-detail-1_thumb.png similarity index 100% rename from static/images/screenshots/en/concept/index-detail-1_thumb.png rename to src/static/images/screenshots/en/concept/index-detail-1_thumb.png diff --git a/static/images/screenshots/en/concept/traffic-graph-1.png b/src/static/images/screenshots/en/concept/traffic-graph-1.png similarity index 100% rename from static/images/screenshots/en/concept/traffic-graph-1.png rename to src/static/images/screenshots/en/concept/traffic-graph-1.png diff --git a/static/images/screenshots/en/concept/traffic-graph-1_thumb.png b/src/static/images/screenshots/en/concept/traffic-graph-1_thumb.png similarity index 100% rename from static/images/screenshots/en/concept/traffic-graph-1_thumb.png rename to src/static/images/screenshots/en/concept/traffic-graph-1_thumb.png diff --git a/static/images/screenshots/en/firewall/connections-1.png b/src/static/images/screenshots/en/firewall/connections-1.png similarity index 100% rename from static/images/screenshots/en/firewall/connections-1.png rename to src/static/images/screenshots/en/firewall/connections-1.png diff --git a/static/images/screenshots/en/firewall/host-groups.png b/src/static/images/screenshots/en/firewall/host-groups.png similarity index 100% rename from static/images/screenshots/en/firewall/host-groups.png rename to src/static/images/screenshots/en/firewall/host-groups.png diff --git a/static/images/screenshots/en/firewall/new-rule.png b/src/static/images/screenshots/en/firewall/new-rule.png similarity index 100% rename from static/images/screenshots/en/firewall/new-rule.png rename to src/static/images/screenshots/en/firewall/new-rule.png diff --git a/static/images/screenshots/en/firewall/rules.png b/src/static/images/screenshots/en/firewall/rules.png similarity index 100% rename from static/images/screenshots/en/firewall/rules.png rename to src/static/images/screenshots/en/firewall/rules.png diff --git a/static/images/screenshots/en/firewall/service-groups.png b/src/static/images/screenshots/en/firewall/service-groups.png similarity index 100% rename from static/images/screenshots/en/firewall/service-groups.png rename to src/static/images/screenshots/en/firewall/service-groups.png diff --git a/static/images/screenshots/en/hardware/hwtemp-1.png b/src/static/images/screenshots/en/hardware/hwtemp-1.png similarity index 100% rename from static/images/screenshots/en/hardware/hwtemp-1.png rename to src/static/images/screenshots/en/hardware/hwtemp-1.png diff --git a/static/images/screenshots/en/hardware/hwtemp-1_thumb.png b/src/static/images/screenshots/en/hardware/hwtemp-1_thumb.png similarity index 100% rename from static/images/screenshots/en/hardware/hwtemp-1_thumb.png rename to src/static/images/screenshots/en/hardware/hwtemp-1_thumb.png diff --git a/static/images/screenshots/en/p2p-block-1.png b/src/static/images/screenshots/en/p2p-block-1.png similarity index 100% rename from static/images/screenshots/en/p2p-block-1.png rename to src/static/images/screenshots/en/p2p-block-1.png diff --git a/static/images/screenshots/en/pakfire/addon-services-1.png b/src/static/images/screenshots/en/pakfire/addon-services-1.png similarity index 100% rename from static/images/screenshots/en/pakfire/addon-services-1.png rename to src/static/images/screenshots/en/pakfire/addon-services-1.png diff --git a/static/images/screenshots/en/pakfire/addon-services-1_thumb.png b/src/static/images/screenshots/en/pakfire/addon-services-1_thumb.png similarity index 100% rename from static/images/screenshots/en/pakfire/addon-services-1_thumb.png rename to src/static/images/screenshots/en/pakfire/addon-services-1_thumb.png diff --git a/static/images/screenshots/en/pakfire/pakfire-overview-1.png b/src/static/images/screenshots/en/pakfire/pakfire-overview-1.png similarity index 100% rename from static/images/screenshots/en/pakfire/pakfire-overview-1.png rename to src/static/images/screenshots/en/pakfire/pakfire-overview-1.png diff --git a/static/images/screenshots/en/pakfire/pakfire-overview-1_thumb.png b/src/static/images/screenshots/en/pakfire/pakfire-overview-1_thumb.png similarity index 100% rename from static/images/screenshots/en/pakfire/pakfire-overview-1_thumb.png rename to src/static/images/screenshots/en/pakfire/pakfire-overview-1_thumb.png diff --git a/static/images/screenshots/en/system-information-1.png b/src/static/images/screenshots/en/system-information-1.png similarity index 100% rename from static/images/screenshots/en/system-information-1.png rename to src/static/images/screenshots/en/system-information-1.png diff --git a/static/images/screenshots/en/virtualization/virt-manager-1.png b/src/static/images/screenshots/en/virtualization/virt-manager-1.png similarity index 100% rename from static/images/screenshots/en/virtualization/virt-manager-1.png rename to src/static/images/screenshots/en/virtualization/virt-manager-1.png diff --git a/static/images/screenshots/en/virtualization/virt-manager-1_thumb.png b/src/static/images/screenshots/en/virtualization/virt-manager-1_thumb.png similarity index 100% rename from static/images/screenshots/en/virtualization/virt-manager-1_thumb.png rename to src/static/images/screenshots/en/virtualization/virt-manager-1_thumb.png diff --git a/static/images/screenshots/ipfire-1.png b/src/static/images/screenshots/ipfire-1.png similarity index 100% rename from static/images/screenshots/ipfire-1.png rename to src/static/images/screenshots/ipfire-1.png diff --git a/static/images/screenshots/ipfire-2.png b/src/static/images/screenshots/ipfire-2.png similarity index 100% rename from static/images/screenshots/ipfire-2.png rename to src/static/images/screenshots/ipfire-2.png diff --git a/static/images/sh-bl.png b/src/static/images/sh-bl.png similarity index 100% rename from static/images/sh-bl.png rename to src/static/images/sh-bl.png diff --git a/static/images/sh-br.png b/src/static/images/sh-br.png similarity index 100% rename from static/images/sh-br.png rename to src/static/images/sh-br.png diff --git a/static/images/sh-btn.png b/src/static/images/sh-btn.png similarity index 100% rename from static/images/sh-btn.png rename to src/static/images/sh-btn.png diff --git a/static/images/sh-lft.png b/src/static/images/sh-lft.png similarity index 100% rename from static/images/sh-lft.png rename to src/static/images/sh-lft.png diff --git a/static/images/sh-rgt.png b/src/static/images/sh-rgt.png similarity index 100% rename from static/images/sh-rgt.png rename to src/static/images/sh-rgt.png diff --git a/static/images/sh-tl.png b/src/static/images/sh-tl.png similarity index 100% rename from static/images/sh-tl.png rename to src/static/images/sh-tl.png diff --git a/static/images/sh-top.png b/src/static/images/sh-top.png similarity index 100% rename from static/images/sh-top.png rename to src/static/images/sh-top.png diff --git a/static/images/sh-tr.png b/src/static/images/sh-tr.png similarity index 100% rename from static/images/sh-tr.png rename to src/static/images/sh-tr.png diff --git a/static/images/spacer.gif b/src/static/images/spacer.gif similarity index 100% rename from static/images/spacer.gif rename to src/static/images/spacer.gif diff --git a/static/images/tux.png b/src/static/images/tux.png similarity index 100% rename from static/images/tux.png rename to src/static/images/tux.png diff --git a/static/images/tux/ipfire_tux_128x128.png b/src/static/images/tux/ipfire_tux_128x128.png similarity index 100% rename from static/images/tux/ipfire_tux_128x128.png rename to src/static/images/tux/ipfire_tux_128x128.png diff --git a/static/images/tux/ipfire_tux_16x16.png b/src/static/images/tux/ipfire_tux_16x16.png similarity index 100% rename from static/images/tux/ipfire_tux_16x16.png rename to src/static/images/tux/ipfire_tux_16x16.png diff --git a/static/images/tux/ipfire_tux_20x20.png b/src/static/images/tux/ipfire_tux_20x20.png similarity index 100% rename from static/images/tux/ipfire_tux_20x20.png rename to src/static/images/tux/ipfire_tux_20x20.png diff --git a/static/images/tux/ipfire_tux_256x256.png b/src/static/images/tux/ipfire_tux_256x256.png similarity index 100% rename from static/images/tux/ipfire_tux_256x256.png rename to src/static/images/tux/ipfire_tux_256x256.png diff --git a/static/images/tux/ipfire_tux_32x32.png b/src/static/images/tux/ipfire_tux_32x32.png similarity index 100% rename from static/images/tux/ipfire_tux_32x32.png rename to src/static/images/tux/ipfire_tux_32x32.png diff --git a/static/images/tux/ipfire_tux_420x420.png b/src/static/images/tux/ipfire_tux_420x420.png similarity index 100% rename from static/images/tux/ipfire_tux_420x420.png rename to src/static/images/tux/ipfire_tux_420x420.png diff --git a/static/images/tux/ipfire_tux_48x48.png b/src/static/images/tux/ipfire_tux_48x48.png similarity index 100% rename from static/images/tux/ipfire_tux_48x48.png rename to src/static/images/tux/ipfire_tux_48x48.png diff --git a/static/images/tux/ipfire_tux_512x512.png b/src/static/images/tux/ipfire_tux_512x512.png similarity index 100% rename from static/images/tux/ipfire_tux_512x512.png rename to src/static/images/tux/ipfire_tux_512x512.png diff --git a/static/images/tux/ipfire_tux_64x64.png b/src/static/images/tux/ipfire_tux_64x64.png similarity index 100% rename from static/images/tux/ipfire_tux_64x64.png rename to src/static/images/tux/ipfire_tux_64x64.png diff --git a/static/images/tux2-99.png b/src/static/images/tux2-99.png similarity index 100% rename from static/images/tux2-99.png rename to src/static/images/tux2-99.png diff --git a/static/images/tux2.png b/src/static/images/tux2.png similarity index 100% rename from static/images/tux2.png rename to src/static/images/tux2.png diff --git a/static/images/tux_menu_99x100.png b/src/static/images/tux_menu_99x100.png similarity index 100% rename from static/images/tux_menu_99x100.png rename to src/static/images/tux_menu_99x100.png diff --git a/static/images/ui-bg_flat_75_f5f5f5_40x100.png b/src/static/images/ui-bg_flat_75_f5f5f5_40x100.png similarity index 100% rename from static/images/ui-bg_flat_75_f5f5f5_40x100.png rename to src/static/images/ui-bg_flat_75_f5f5f5_40x100.png diff --git a/static/images/ui-bg_glass_75_dadada_1x400.png b/src/static/images/ui-bg_glass_75_dadada_1x400.png similarity index 100% rename from static/images/ui-bg_glass_75_dadada_1x400.png rename to src/static/images/ui-bg_glass_75_dadada_1x400.png diff --git a/static/images/ui-bg_glass_75_e6e6e6_1x400.png b/src/static/images/ui-bg_glass_75_e6e6e6_1x400.png similarity index 100% rename from static/images/ui-bg_glass_75_e6e6e6_1x400.png rename to src/static/images/ui-bg_glass_75_e6e6e6_1x400.png diff --git a/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/src/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png similarity index 100% rename from static/images/ui-bg_highlight-soft_75_cccccc_1x100.png rename to src/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png diff --git a/static/images/win_icon.png b/src/static/images/win_icon.png similarity index 100% rename from static/images/win_icon.png rename to src/static/images/win_icon.png diff --git a/static/images/x-click-but04.gif b/src/static/images/x-click-but04.gif similarity index 100% rename from static/images/x-click-but04.gif rename to src/static/images/x-click-but04.gif diff --git a/static/img/amex.png b/src/static/img/amex.png similarity index 100% rename from static/img/amex.png rename to src/static/img/amex.png diff --git a/static/img/amex@2x.png b/src/static/img/amex@2x.png similarity index 100% rename from static/img/amex@2x.png rename to src/static/img/amex@2x.png diff --git a/static/img/amex@3x.png b/src/static/img/amex@3x.png similarity index 100% rename from static/img/amex@3x.png rename to src/static/img/amex@3x.png diff --git a/static/img/appliance-pro.png b/src/static/img/appliance-pro.png similarity index 100% rename from static/img/appliance-pro.png rename to src/static/img/appliance-pro.png diff --git a/static/img/appliance-pro_md.png b/src/static/img/appliance-pro_md.png similarity index 100% rename from static/img/appliance-pro_md.png rename to src/static/img/appliance-pro_md.png diff --git a/static/img/appliance-pro_sm.png b/src/static/img/appliance-pro_sm.png similarity index 100% rename from static/img/appliance-pro_sm.png rename to src/static/img/appliance-pro_sm.png diff --git a/static/img/appliance-pro_xs.png b/src/static/img/appliance-pro_xs.png similarity index 100% rename from static/img/appliance-pro_xs.png rename to src/static/img/appliance-pro_xs.png diff --git a/static/img/header-background.jpg b/src/static/img/header-background.jpg similarity index 100% rename from static/img/header-background.jpg rename to src/static/img/header-background.jpg diff --git a/static/img/icons.svg b/src/static/img/icons.svg similarity index 100% rename from static/img/icons.svg rename to src/static/img/icons.svg diff --git a/static/img/icons/Arrorw down.ai b/src/static/img/icons/Arrorw down.ai similarity index 100% rename from static/img/icons/Arrorw down.ai rename to src/static/img/icons/Arrorw down.ai diff --git a/static/img/icons/Arrorw down.svg b/src/static/img/icons/Arrorw down.svg similarity index 100% rename from static/img/icons/Arrorw down.svg rename to src/static/img/icons/Arrorw down.svg diff --git a/static/img/icons/Couch.ai b/src/static/img/icons/Couch.ai similarity index 100% rename from static/img/icons/Couch.ai rename to src/static/img/icons/Couch.ai diff --git a/static/img/icons/Couch.svg b/src/static/img/icons/Couch.svg similarity index 100% rename from static/img/icons/Couch.svg rename to src/static/img/icons/Couch.svg diff --git a/static/img/icons/Download.ai b/src/static/img/icons/Download.ai similarity index 100% rename from static/img/icons/Download.ai rename to src/static/img/icons/Download.ai diff --git a/static/img/icons/Download.svg b/src/static/img/icons/Download.svg similarity index 100% rename from static/img/icons/Download.svg rename to src/static/img/icons/Download.svg diff --git a/static/img/icons/Facebook.ai b/src/static/img/icons/Facebook.ai similarity index 100% rename from static/img/icons/Facebook.ai rename to src/static/img/icons/Facebook.ai diff --git a/static/img/icons/Facebook.svg b/src/static/img/icons/Facebook.svg similarity index 100% rename from static/img/icons/Facebook.svg rename to src/static/img/icons/Facebook.svg diff --git a/static/img/icons/Github.ai b/src/static/img/icons/Github.ai similarity index 100% rename from static/img/icons/Github.ai rename to src/static/img/icons/Github.ai diff --git a/static/img/icons/Github.svg b/src/static/img/icons/Github.svg similarity index 100% rename from static/img/icons/Github.svg rename to src/static/img/icons/Github.svg diff --git a/static/img/icons/Google Plus.ai b/src/static/img/icons/Google Plus.ai similarity index 100% rename from static/img/icons/Google Plus.ai rename to src/static/img/icons/Google Plus.ai diff --git a/static/img/icons/Google Plus.svg b/src/static/img/icons/Google Plus.svg similarity index 100% rename from static/img/icons/Google Plus.svg rename to src/static/img/icons/Google Plus.svg diff --git a/static/img/icons/Heart.ai b/src/static/img/icons/Heart.ai similarity index 100% rename from static/img/icons/Heart.ai rename to src/static/img/icons/Heart.ai diff --git a/static/img/icons/Heart.svg b/src/static/img/icons/Heart.svg similarity index 100% rename from static/img/icons/Heart.svg rename to src/static/img/icons/Heart.svg diff --git a/static/img/icons/Menu.ai b/src/static/img/icons/Menu.ai similarity index 100% rename from static/img/icons/Menu.ai rename to src/static/img/icons/Menu.ai diff --git a/static/img/icons/Menu.svg b/src/static/img/icons/Menu.svg similarity index 100% rename from static/img/icons/Menu.svg rename to src/static/img/icons/Menu.svg diff --git a/static/img/icons/Security.ai b/src/static/img/icons/Security.ai similarity index 100% rename from static/img/icons/Security.ai rename to src/static/img/icons/Security.ai diff --git a/static/img/icons/Security.svg b/src/static/img/icons/Security.svg similarity index 100% rename from static/img/icons/Security.svg rename to src/static/img/icons/Security.svg diff --git a/static/img/icons/Shield.ai b/src/static/img/icons/Shield.ai similarity index 100% rename from static/img/icons/Shield.ai rename to src/static/img/icons/Shield.ai diff --git a/static/img/icons/Shield.svg b/src/static/img/icons/Shield.svg similarity index 100% rename from static/img/icons/Shield.svg rename to src/static/img/icons/Shield.svg diff --git a/static/img/icons/Speed.ai b/src/static/img/icons/Speed.ai similarity index 100% rename from static/img/icons/Speed.ai rename to src/static/img/icons/Speed.ai diff --git a/static/img/icons/Speed.svg b/src/static/img/icons/Speed.svg similarity index 100% rename from static/img/icons/Speed.svg rename to src/static/img/icons/Speed.svg diff --git a/static/img/icons/Twitter.ai b/src/static/img/icons/Twitter.ai similarity index 100% rename from static/img/icons/Twitter.ai rename to src/static/img/icons/Twitter.ai diff --git a/static/img/icons/Twitter.svg b/src/static/img/icons/Twitter.svg similarity index 100% rename from static/img/icons/Twitter.svg rename to src/static/img/icons/Twitter.svg diff --git a/static/img/icons/YouTube.ai b/src/static/img/icons/YouTube.ai similarity index 100% rename from static/img/icons/YouTube.ai rename to src/static/img/icons/YouTube.ai diff --git a/static/img/icons/YouTube.svg b/src/static/img/icons/YouTube.svg similarity index 100% rename from static/img/icons/YouTube.svg rename to src/static/img/icons/YouTube.svg diff --git a/static/img/icons/icon-arrow-down.svg b/src/static/img/icons/icon-arrow-down.svg similarity index 100% rename from static/img/icons/icon-arrow-down.svg rename to src/static/img/icons/icon-arrow-down.svg diff --git a/static/img/icons/icon-couch.svg b/src/static/img/icons/icon-couch.svg similarity index 100% rename from static/img/icons/icon-couch.svg rename to src/static/img/icons/icon-couch.svg diff --git a/static/img/icons/icon-download.svg b/src/static/img/icons/icon-download.svg similarity index 100% rename from static/img/icons/icon-download.svg rename to src/static/img/icons/icon-download.svg diff --git a/static/img/icons/icon-facebook.svg b/src/static/img/icons/icon-facebook.svg similarity index 100% rename from static/img/icons/icon-facebook.svg rename to src/static/img/icons/icon-facebook.svg diff --git a/static/img/icons/icon-github-circle.svg b/src/static/img/icons/icon-github-circle.svg similarity index 100% rename from static/img/icons/icon-github-circle.svg rename to src/static/img/icons/icon-github-circle.svg diff --git a/static/img/icons/icon-gplus.svg b/src/static/img/icons/icon-gplus.svg similarity index 100% rename from static/img/icons/icon-gplus.svg rename to src/static/img/icons/icon-gplus.svg diff --git a/static/img/icons/icon-heart-filled-white.svg b/src/static/img/icons/icon-heart-filled-white.svg similarity index 100% rename from static/img/icons/icon-heart-filled-white.svg rename to src/static/img/icons/icon-heart-filled-white.svg diff --git a/static/img/icons/icon-heart-filled.svg b/src/static/img/icons/icon-heart-filled.svg similarity index 100% rename from static/img/icons/icon-heart-filled.svg rename to src/static/img/icons/icon-heart-filled.svg diff --git a/static/img/icons/icon-lock.svg b/src/static/img/icons/icon-lock.svg similarity index 100% rename from static/img/icons/icon-lock.svg rename to src/static/img/icons/icon-lock.svg diff --git a/static/img/icons/icon-menu.svg b/src/static/img/icons/icon-menu.svg similarity index 100% rename from static/img/icons/icon-menu.svg rename to src/static/img/icons/icon-menu.svg diff --git a/static/img/icons/icon-radiobtn-off.png b/src/static/img/icons/icon-radiobtn-off.png similarity index 100% rename from static/img/icons/icon-radiobtn-off.png rename to src/static/img/icons/icon-radiobtn-off.png diff --git a/static/img/icons/icon-radiobtn-off.svg b/src/static/img/icons/icon-radiobtn-off.svg similarity index 100% rename from static/img/icons/icon-radiobtn-off.svg rename to src/static/img/icons/icon-radiobtn-off.svg diff --git a/static/img/icons/icon-radiobtn-off@2x.png b/src/static/img/icons/icon-radiobtn-off@2x.png similarity index 100% rename from static/img/icons/icon-radiobtn-off@2x.png rename to src/static/img/icons/icon-radiobtn-off@2x.png diff --git a/static/img/icons/icon-radiobtn-off@3x.png b/src/static/img/icons/icon-radiobtn-off@3x.png similarity index 100% rename from static/img/icons/icon-radiobtn-off@3x.png rename to src/static/img/icons/icon-radiobtn-off@3x.png diff --git a/static/img/icons/icon-radiobtn-on.png b/src/static/img/icons/icon-radiobtn-on.png similarity index 100% rename from static/img/icons/icon-radiobtn-on.png rename to src/static/img/icons/icon-radiobtn-on.png diff --git a/static/img/icons/icon-radiobtn-on.svg b/src/static/img/icons/icon-radiobtn-on.svg similarity index 100% rename from static/img/icons/icon-radiobtn-on.svg rename to src/static/img/icons/icon-radiobtn-on.svg diff --git a/static/img/icons/icon-radiobtn-on@2x.png b/src/static/img/icons/icon-radiobtn-on@2x.png similarity index 100% rename from static/img/icons/icon-radiobtn-on@2x.png rename to src/static/img/icons/icon-radiobtn-on@2x.png diff --git a/static/img/icons/icon-radiobtn-on@3x.png b/src/static/img/icons/icon-radiobtn-on@3x.png similarity index 100% rename from static/img/icons/icon-radiobtn-on@3x.png rename to src/static/img/icons/icon-radiobtn-on@3x.png diff --git a/static/img/icons/icon-rss.svg b/src/static/img/icons/icon-rss.svg similarity index 100% rename from static/img/icons/icon-rss.svg rename to src/static/img/icons/icon-rss.svg diff --git a/static/img/icons/icon-security-network.svg b/src/static/img/icons/icon-security-network.svg similarity index 100% rename from static/img/icons/icon-security-network.svg rename to src/static/img/icons/icon-security-network.svg diff --git a/static/img/icons/icon-security.svg b/src/static/img/icons/icon-security.svg similarity index 100% rename from static/img/icons/icon-security.svg rename to src/static/img/icons/icon-security.svg diff --git a/static/img/icons/icon-server.svg b/src/static/img/icons/icon-server.svg similarity index 100% rename from static/img/icons/icon-server.svg rename to src/static/img/icons/icon-server.svg diff --git a/static/img/icons/icon-speedometer.svg b/src/static/img/icons/icon-speedometer.svg similarity index 100% rename from static/img/icons/icon-speedometer.svg rename to src/static/img/icons/icon-speedometer.svg diff --git a/static/img/icons/icon-twitter.svg b/src/static/img/icons/icon-twitter.svg similarity index 100% rename from static/img/icons/icon-twitter.svg rename to src/static/img/icons/icon-twitter.svg diff --git a/static/img/icons/icon-verified.svg b/src/static/img/icons/icon-verified.svg similarity index 100% rename from static/img/icons/icon-verified.svg rename to src/static/img/icons/icon-verified.svg diff --git a/static/img/icons/icon-warning.svg b/src/static/img/icons/icon-warning.svg similarity index 100% rename from static/img/icons/icon-warning.svg rename to src/static/img/icons/icon-warning.svg diff --git a/static/img/icons/icon-wifi.svg b/src/static/img/icons/icon-wifi.svg similarity index 100% rename from static/img/icons/icon-wifi.svg rename to src/static/img/icons/icon-wifi.svg diff --git a/static/img/icons/icon-youtube.svg b/src/static/img/icons/icon-youtube.svg similarity index 100% rename from static/img/icons/icon-youtube.svg rename to src/static/img/icons/icon-youtube.svg diff --git a/static/img/icons/rss.ai b/src/static/img/icons/rss.ai similarity index 100% rename from static/img/icons/rss.ai rename to src/static/img/icons/rss.ai diff --git a/static/img/icons/rss.svg b/src/static/img/icons/rss.svg similarity index 100% rename from static/img/icons/rss.svg rename to src/static/img/icons/rss.svg diff --git a/static/img/ipfire-tux.png b/src/static/img/ipfire-tux.png similarity index 100% rename from static/img/ipfire-tux.png rename to src/static/img/ipfire-tux.png diff --git a/static/img/mastercard.png b/src/static/img/mastercard.png similarity index 100% rename from static/img/mastercard.png rename to src/static/img/mastercard.png diff --git a/static/img/mastercard@2x.png b/src/static/img/mastercard@2x.png similarity index 100% rename from static/img/mastercard@2x.png rename to src/static/img/mastercard@2x.png diff --git a/static/img/mastercard@3x.png b/src/static/img/mastercard@3x.png similarity index 100% rename from static/img/mastercard@3x.png rename to src/static/img/mastercard@3x.png diff --git a/static/img/visa.png b/src/static/img/visa.png similarity index 100% rename from static/img/visa.png rename to src/static/img/visa.png diff --git a/static/img/visa@2x.png b/src/static/img/visa@2x.png similarity index 100% rename from static/img/visa@2x.png rename to src/static/img/visa@2x.png diff --git a/static/img/visa@3x.png b/src/static/img/visa@3x.png similarity index 100% rename from static/img/visa@3x.png rename to src/static/img/visa@3x.png diff --git a/static/js/bootstrap.min.js b/src/static/js/bootstrap.min.js similarity index 100% rename from static/js/bootstrap.min.js rename to src/static/js/bootstrap.min.js diff --git a/static/js/circle-progress.min.js b/src/static/js/circle-progress.min.js similarity index 100% rename from static/js/circle-progress.min.js rename to src/static/js/circle-progress.min.js diff --git a/static/js/correctpng.js b/src/static/js/correctpng.js similarity index 100% rename from static/js/correctpng.js rename to src/static/js/correctpng.js diff --git a/static/js/jquery-anythingslider-fx.js b/src/static/js/jquery-anythingslider-fx.js similarity index 100% rename from static/js/jquery-anythingslider-fx.js rename to src/static/js/jquery-anythingslider-fx.js diff --git a/static/js/jquery-anythingslider.js b/src/static/js/jquery-anythingslider.js similarity index 100% rename from static/js/jquery-anythingslider.js rename to src/static/js/jquery-anythingslider.js diff --git a/static/js/jquery-scrollto.js b/src/static/js/jquery-scrollto.js similarity index 100% rename from static/js/jquery-scrollto.js rename to src/static/js/jquery-scrollto.js diff --git a/static/js/jquery-ui.js b/src/static/js/jquery-ui.js similarity index 100% rename from static/js/jquery-ui.js rename to src/static/js/jquery-ui.js diff --git a/static/js/jquery.easing.js b/src/static/js/jquery.easing.js similarity index 100% rename from static/js/jquery.easing.js rename to src/static/js/jquery.easing.js diff --git a/static/js/jquery.js b/src/static/js/jquery.js similarity index 100% rename from static/js/jquery.js rename to src/static/js/jquery.js diff --git a/static/js/jquery.lightbox.min.js b/src/static/js/jquery.lightbox.min.js similarity index 100% rename from static/js/jquery.lightbox.min.js rename to src/static/js/jquery.lightbox.min.js diff --git a/static/js/photoswipe-index.js b/src/static/js/photoswipe-index.js similarity index 100% rename from static/js/photoswipe-index.js rename to src/static/js/photoswipe-index.js diff --git a/static/js/photoswipe-ui-default.min.js b/src/static/js/photoswipe-ui-default.min.js similarity index 100% rename from static/js/photoswipe-ui-default.min.js rename to src/static/js/photoswipe-ui-default.min.js diff --git a/static/js/photoswipe.min.js b/src/static/js/photoswipe.min.js similarity index 100% rename from static/js/photoswipe.min.js rename to src/static/js/photoswipe.min.js diff --git a/static/js/prettify.js b/src/static/js/prettify.js similarity index 100% rename from static/js/prettify.js rename to src/static/js/prettify.js diff --git a/static/js/script.js b/src/static/js/script.js similarity index 100% rename from static/js/script.js rename to src/static/js/script.js diff --git a/static/js/script.min.js b/src/static/js/script.min.js similarity index 100% rename from static/js/script.min.js rename to src/static/js/script.min.js diff --git a/static/js/site-min.js b/src/static/js/site-min.js similarity index 100% rename from static/js/site-min.js rename to src/static/js/site-min.js diff --git a/static/js/site.js b/src/static/js/site.js similarity index 100% rename from static/js/site.js rename to src/static/js/site.js diff --git a/static/netboot/boot.png b/src/static/netboot/boot.png similarity index 100% rename from static/netboot/boot.png rename to src/static/netboot/boot.png diff --git a/static/netboot/boot.svg b/src/static/netboot/boot.svg similarity index 100% rename from static/netboot/boot.svg rename to src/static/netboot/boot.svg diff --git a/static/netboot/ipxe.kpxe b/src/static/netboot/ipxe.kpxe similarity index 100% rename from static/netboot/ipxe.kpxe rename to src/static/netboot/ipxe.kpxe diff --git a/static/netboot/menu.c32 b/src/static/netboot/menu.c32 similarity index 100% rename from static/netboot/menu.c32 rename to src/static/netboot/menu.c32 diff --git a/static/netboot/pxelinux.0 b/src/static/netboot/pxelinux.0 similarity index 100% rename from static/netboot/pxelinux.0 rename to src/static/netboot/pxelinux.0 diff --git a/static/netboot/vesamenu.c32 b/src/static/netboot/vesamenu.c32 similarity index 100% rename from static/netboot/vesamenu.c32 rename to src/static/netboot/vesamenu.c32 diff --git a/src/systemd/ipfire.org-webapp-1.service.in b/src/systemd/ipfire.org-webapp-1.service.in new file mode 100644 index 00000000..27e9fee3 --- /dev/null +++ b/src/systemd/ipfire.org-webapp-1.service.in @@ -0,0 +1,11 @@ +[Unit] +Description=IPFire.org Web Application Production #1 +After=network.target + +[Service] +ExecStart=@bindir@/ipfire.org-webapp --port=8001 +User=nobody +Group=nobody + +[Install] +WantedBy=multi-user.target diff --git a/src/systemd/ipfire.org-webapp-2.service.in b/src/systemd/ipfire.org-webapp-2.service.in new file mode 100644 index 00000000..b2a8dd10 --- /dev/null +++ b/src/systemd/ipfire.org-webapp-2.service.in @@ -0,0 +1,11 @@ +[Unit] +Description=IPFire.org Web Application Production #2 +After=network.target + +[Service] +ExecStart=@bindir@/ipfire.org-webapp --port=8002 +User=nobody +Group=nobody + +[Install] +WantedBy=multi-user.target diff --git a/src/systemd/ipfire.org-webapp-3.service.in b/src/systemd/ipfire.org-webapp-3.service.in new file mode 100644 index 00000000..3d97e5a2 --- /dev/null +++ b/src/systemd/ipfire.org-webapp-3.service.in @@ -0,0 +1,11 @@ +[Unit] +Description=IPFire.org Web Application Production #3 +After=network.target + +[Service] +ExecStart=@bindir@/ipfire.org-webapp --port=8003 +User=nobody +Group=nobody + +[Install] +WantedBy=multi-user.target diff --git a/src/systemd/ipfire.org-webapp-4.service.in b/src/systemd/ipfire.org-webapp-4.service.in new file mode 100644 index 00000000..f44a886b --- /dev/null +++ b/src/systemd/ipfire.org-webapp-4.service.in @@ -0,0 +1,11 @@ +[Unit] +Description=IPFire.org Web Application Production #4 +After=network.target + +[Service] +ExecStart=@bindir@/ipfire.org-webapp --port=8004 +User=nobody +Group=nobody + +[Install] +WantedBy=multi-user.target diff --git a/templates/admin-accounts-edit.html b/src/templates/admin-accounts-edit.html similarity index 100% rename from templates/admin-accounts-edit.html rename to src/templates/admin-accounts-edit.html diff --git a/templates/admin-accounts.html b/src/templates/admin-accounts.html similarity index 100% rename from templates/admin-accounts.html rename to src/templates/admin-accounts.html diff --git a/templates/admin-downloads-mirrors.html b/src/templates/admin-downloads-mirrors.html similarity index 100% rename from templates/admin-downloads-mirrors.html rename to src/templates/admin-downloads-mirrors.html diff --git a/templates/admin-downloads.html b/src/templates/admin-downloads.html similarity index 100% rename from templates/admin-downloads.html rename to src/templates/admin-downloads.html diff --git a/templates/admin-index.html b/src/templates/admin-index.html similarity index 100% rename from templates/admin-index.html rename to src/templates/admin-index.html diff --git a/templates/admin-mirrors-create.html b/src/templates/admin-mirrors-create.html similarity index 100% rename from templates/admin-mirrors-create.html rename to src/templates/admin-mirrors-create.html diff --git a/templates/admin-mirrors-details.html b/src/templates/admin-mirrors-details.html similarity index 100% rename from templates/admin-mirrors-details.html rename to src/templates/admin-mirrors-details.html diff --git a/templates/admin-mirrors.html b/src/templates/admin-mirrors.html similarity index 100% rename from templates/admin-mirrors.html rename to src/templates/admin-mirrors.html diff --git a/templates/admin-planet-compose.html b/src/templates/admin-planet-compose.html similarity index 100% rename from templates/admin-planet-compose.html rename to src/templates/admin-planet-compose.html diff --git a/templates/admin-planet.html b/src/templates/admin-planet.html similarity index 100% rename from templates/admin-planet.html rename to src/templates/admin-planet.html diff --git a/templates/auth/login.html b/src/templates/auth/login.html similarity index 100% rename from templates/auth/login.html rename to src/templates/auth/login.html diff --git a/templates/base-1.html b/src/templates/base-1.html similarity index 100% rename from templates/base-1.html rename to src/templates/base-1.html diff --git a/templates/base-2.html b/src/templates/base-2.html similarity index 100% rename from templates/base-2.html rename to src/templates/base-2.html diff --git a/templates/base-feature.html b/src/templates/base-feature.html similarity index 100% rename from templates/base-feature.html rename to src/templates/base-feature.html diff --git a/templates/base.html b/src/templates/base.html similarity index 100% rename from templates/base.html rename to src/templates/base.html diff --git a/templates/donate.html b/src/templates/donate.html similarity index 100% rename from templates/donate.html rename to src/templates/donate.html diff --git a/templates/download-mirror-detail.html b/src/templates/download-mirror-detail.html similarity index 100% rename from templates/download-mirror-detail.html rename to src/templates/download-mirror-detail.html diff --git a/templates/download-splash.html b/src/templates/download-splash.html similarity index 100% rename from templates/download-splash.html rename to src/templates/download-splash.html diff --git a/templates/download.html b/src/templates/download.html similarity index 100% rename from templates/download.html rename to src/templates/download.html diff --git a/templates/downloads-all.html b/src/templates/downloads-all.html similarity index 100% rename from templates/downloads-all.html rename to src/templates/downloads-all.html diff --git a/templates/downloads-development.html b/src/templates/downloads-development.html similarity index 100% rename from templates/downloads-development.html rename to src/templates/downloads-development.html diff --git a/templates/downloads-index.html b/src/templates/downloads-index.html similarity index 100% rename from templates/downloads-index.html rename to src/templates/downloads-index.html diff --git a/templates/downloads-item.html b/src/templates/downloads-item.html similarity index 100% rename from templates/downloads-item.html rename to src/templates/downloads-item.html diff --git a/templates/downloads-mirrors.html b/src/templates/downloads-mirrors.html similarity index 100% rename from templates/downloads-mirrors.html rename to src/templates/downloads-mirrors.html diff --git a/templates/downloads-older.html b/src/templates/downloads-older.html similarity index 100% rename from templates/downloads-older.html rename to src/templates/downloads-older.html diff --git a/templates/error-404.html b/src/templates/error-404.html similarity index 100% rename from templates/error-404.html rename to src/templates/error-404.html diff --git a/templates/error-500.html b/src/templates/error-500.html similarity index 100% rename from templates/error-500.html rename to src/templates/error-500.html diff --git a/templates/error.html b/src/templates/error.html similarity index 100% rename from templates/error.html rename to src/templates/error.html diff --git a/templates/feeds/base.xml b/src/templates/feeds/base.xml similarity index 100% rename from templates/feeds/base.xml rename to src/templates/feeds/base.xml diff --git a/templates/feeds/news.xml b/src/templates/feeds/news.xml similarity index 100% rename from templates/feeds/news.xml rename to src/templates/feeds/news.xml diff --git a/templates/feeds/planet.xml b/src/templates/feeds/planet.xml similarity index 100% rename from templates/feeds/planet.xml rename to src/templates/feeds/planet.xml diff --git a/templates/fireinfo/base.html b/src/templates/fireinfo/base.html similarity index 100% rename from templates/fireinfo/base.html rename to src/templates/fireinfo/base.html diff --git a/templates/fireinfo/driver.html b/src/templates/fireinfo/driver.html similarity index 100% rename from templates/fireinfo/driver.html rename to src/templates/fireinfo/driver.html diff --git a/templates/fireinfo/index.html b/src/templates/fireinfo/index.html similarity index 100% rename from templates/fireinfo/index.html rename to src/templates/fireinfo/index.html diff --git a/templates/fireinfo/model-detail.html b/src/templates/fireinfo/model-detail.html similarity index 100% rename from templates/fireinfo/model-detail.html rename to src/templates/fireinfo/model-detail.html diff --git a/templates/fireinfo/modules/table-devices-and-groups.html b/src/templates/fireinfo/modules/table-devices-and-groups.html similarity index 100% rename from templates/fireinfo/modules/table-devices-and-groups.html rename to src/templates/fireinfo/modules/table-devices-and-groups.html diff --git a/templates/fireinfo/modules/table-devices.html b/src/templates/fireinfo/modules/table-devices.html similarity index 100% rename from templates/fireinfo/modules/table-devices.html rename to src/templates/fireinfo/modules/table-devices.html diff --git a/templates/fireinfo/modules/table-geo.html b/src/templates/fireinfo/modules/table-geo.html similarity index 100% rename from templates/fireinfo/modules/table-geo.html rename to src/templates/fireinfo/modules/table-geo.html diff --git a/templates/fireinfo/profile-detail.html b/src/templates/fireinfo/profile-detail.html similarity index 100% rename from templates/fireinfo/profile-detail.html rename to src/templates/fireinfo/profile-detail.html diff --git a/templates/fireinfo/profile-notfound.html b/src/templates/fireinfo/profile-notfound.html similarity index 100% rename from templates/fireinfo/profile-notfound.html rename to src/templates/fireinfo/profile-notfound.html diff --git a/templates/fireinfo/stats-admin.html b/src/templates/fireinfo/stats-admin.html similarity index 100% rename from templates/fireinfo/stats-admin.html rename to src/templates/fireinfo/stats-admin.html diff --git a/templates/fireinfo/stats-cpus-detail.html b/src/templates/fireinfo/stats-cpus-detail.html similarity index 100% rename from templates/fireinfo/stats-cpus-detail.html rename to src/templates/fireinfo/stats-cpus-detail.html diff --git a/templates/fireinfo/stats-cpus.html b/src/templates/fireinfo/stats-cpus.html similarity index 100% rename from templates/fireinfo/stats-cpus.html rename to src/templates/fireinfo/stats-cpus.html diff --git a/templates/fireinfo/stats-geo.html b/src/templates/fireinfo/stats-geo.html similarity index 100% rename from templates/fireinfo/stats-geo.html rename to src/templates/fireinfo/stats-geo.html diff --git a/templates/fireinfo/stats-languages.html b/src/templates/fireinfo/stats-languages.html similarity index 100% rename from templates/fireinfo/stats-languages.html rename to src/templates/fireinfo/stats-languages.html diff --git a/templates/fireinfo/stats-memory.html b/src/templates/fireinfo/stats-memory.html similarity index 100% rename from templates/fireinfo/stats-memory.html rename to src/templates/fireinfo/stats-memory.html diff --git a/templates/fireinfo/stats-network.html b/src/templates/fireinfo/stats-network.html similarity index 100% rename from templates/fireinfo/stats-network.html rename to src/templates/fireinfo/stats-network.html diff --git a/templates/fireinfo/stats-oses.html b/src/templates/fireinfo/stats-oses.html similarity index 100% rename from templates/fireinfo/stats-oses.html rename to src/templates/fireinfo/stats-oses.html diff --git a/templates/fireinfo/stats-virtual.html b/src/templates/fireinfo/stats-virtual.html similarity index 100% rename from templates/fireinfo/stats-virtual.html rename to src/templates/fireinfo/stats-virtual.html diff --git a/templates/fireinfo/stats.html b/src/templates/fireinfo/stats.html similarity index 100% rename from templates/fireinfo/stats.html rename to src/templates/fireinfo/stats.html diff --git a/templates/fireinfo/vendor-detail.html b/src/templates/fireinfo/vendor-detail.html similarity index 100% rename from templates/fireinfo/vendor-detail.html rename to src/templates/fireinfo/vendor-detail.html diff --git a/templates/fireinfo/vendors.html b/src/templates/fireinfo/vendors.html similarity index 100% rename from templates/fireinfo/vendors.html rename to src/templates/fireinfo/vendors.html diff --git a/templates/geoip/index.html b/src/templates/geoip/index.html similarity index 100% rename from templates/geoip/index.html rename to src/templates/geoip/index.html diff --git a/templates/i-use/errors/IPFire-Banner1-Bronze.png b/src/templates/i-use/errors/IPFire-Banner1-Bronze.png similarity index 100% rename from templates/i-use/errors/IPFire-Banner1-Bronze.png rename to src/templates/i-use/errors/IPFire-Banner1-Bronze.png diff --git a/templates/i-use/errors/IPFire-Banner1-Gold.png b/src/templates/i-use/errors/IPFire-Banner1-Gold.png similarity index 100% rename from templates/i-use/errors/IPFire-Banner1-Gold.png rename to src/templates/i-use/errors/IPFire-Banner1-Gold.png diff --git a/templates/i-use/errors/IPFire-Banner1-Silver.png b/src/templates/i-use/errors/IPFire-Banner1-Silver.png similarity index 100% rename from templates/i-use/errors/IPFire-Banner1-Silver.png rename to src/templates/i-use/errors/IPFire-Banner1-Silver.png diff --git a/templates/i-use/fonts/DejaVuSans-Bold.ttf b/src/templates/i-use/fonts/DejaVuSans-Bold.ttf similarity index 100% rename from templates/i-use/fonts/DejaVuSans-Bold.ttf rename to src/templates/i-use/fonts/DejaVuSans-Bold.ttf diff --git a/templates/i-use/fonts/DejaVuSans.ttf b/src/templates/i-use/fonts/DejaVuSans.ttf similarity index 100% rename from templates/i-use/fonts/DejaVuSans.ttf rename to src/templates/i-use/fonts/DejaVuSans.ttf diff --git a/templates/i-use/fonts/Ubuntu-B.ttf b/src/templates/i-use/fonts/Ubuntu-B.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-B.ttf rename to src/templates/i-use/fonts/Ubuntu-B.ttf diff --git a/templates/i-use/fonts/Ubuntu-BI.ttf b/src/templates/i-use/fonts/Ubuntu-BI.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-BI.ttf rename to src/templates/i-use/fonts/Ubuntu-BI.ttf diff --git a/templates/i-use/fonts/Ubuntu-C.ttf b/src/templates/i-use/fonts/Ubuntu-C.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-C.ttf rename to src/templates/i-use/fonts/Ubuntu-C.ttf diff --git a/templates/i-use/fonts/Ubuntu-L.ttf b/src/templates/i-use/fonts/Ubuntu-L.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-L.ttf rename to src/templates/i-use/fonts/Ubuntu-L.ttf diff --git a/templates/i-use/fonts/Ubuntu-LI.ttf b/src/templates/i-use/fonts/Ubuntu-LI.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-LI.ttf rename to src/templates/i-use/fonts/Ubuntu-LI.ttf diff --git a/templates/i-use/fonts/Ubuntu-M.ttf b/src/templates/i-use/fonts/Ubuntu-M.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-M.ttf rename to src/templates/i-use/fonts/Ubuntu-M.ttf diff --git a/templates/i-use/fonts/Ubuntu-MI.ttf b/src/templates/i-use/fonts/Ubuntu-MI.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-MI.ttf rename to src/templates/i-use/fonts/Ubuntu-MI.ttf diff --git a/templates/i-use/fonts/Ubuntu-R.ttf b/src/templates/i-use/fonts/Ubuntu-R.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-R.ttf rename to src/templates/i-use/fonts/Ubuntu-R.ttf diff --git a/templates/i-use/fonts/Ubuntu-RI.ttf b/src/templates/i-use/fonts/Ubuntu-RI.ttf similarity index 100% rename from templates/i-use/fonts/Ubuntu-RI.ttf rename to src/templates/i-use/fonts/Ubuntu-RI.ttf diff --git a/templates/i-use/fonts/UbuntuMono-B.ttf b/src/templates/i-use/fonts/UbuntuMono-B.ttf similarity index 100% rename from templates/i-use/fonts/UbuntuMono-B.ttf rename to src/templates/i-use/fonts/UbuntuMono-B.ttf diff --git a/templates/i-use/fonts/UbuntuMono-BI.ttf b/src/templates/i-use/fonts/UbuntuMono-BI.ttf similarity index 100% rename from templates/i-use/fonts/UbuntuMono-BI.ttf rename to src/templates/i-use/fonts/UbuntuMono-BI.ttf diff --git a/templates/i-use/fonts/UbuntuMono-R.ttf b/src/templates/i-use/fonts/UbuntuMono-R.ttf similarity index 100% rename from templates/i-use/fonts/UbuntuMono-R.ttf rename to src/templates/i-use/fonts/UbuntuMono-R.ttf diff --git a/templates/i-use/fonts/UbuntuMono-RI.ttf b/src/templates/i-use/fonts/UbuntuMono-RI.ttf similarity index 100% rename from templates/i-use/fonts/UbuntuMono-RI.ttf rename to src/templates/i-use/fonts/UbuntuMono-RI.ttf diff --git a/templates/i-use/i-use-1.png b/src/templates/i-use/i-use-1.png similarity index 100% rename from templates/i-use/i-use-1.png rename to src/templates/i-use/i-use-1.png diff --git a/templates/i-use/i-use-1.xcf b/src/templates/i-use/i-use-1.xcf similarity index 100% rename from templates/i-use/i-use-1.xcf rename to src/templates/i-use/i-use-1.xcf diff --git a/templates/index.html b/src/templates/index.html similarity index 100% rename from templates/index.html rename to src/templates/index.html diff --git a/templates/mirrors-item.html b/src/templates/mirrors-item.html similarity index 100% rename from templates/mirrors-item.html rename to src/templates/mirrors-item.html diff --git a/templates/mirrors.html b/src/templates/mirrors.html similarity index 100% rename from templates/mirrors.html rename to src/templates/mirrors.html diff --git a/templates/modules/ads/download-splash.html b/src/templates/modules/ads/download-splash.html similarity index 100% rename from templates/modules/ads/download-splash.html rename to src/templates/modules/ads/download-splash.html diff --git a/templates/modules/builds.html b/src/templates/modules/builds.html similarity index 100% rename from templates/modules/builds.html rename to src/templates/modules/builds.html diff --git a/templates/modules/donation-box.html b/src/templates/modules/donation-box.html similarity index 100% rename from templates/modules/donation-box.html rename to src/templates/modules/donation-box.html diff --git a/templates/modules/donation-button.html b/src/templates/modules/donation-button.html similarity index 100% rename from templates/modules/donation-button.html rename to src/templates/modules/donation-button.html diff --git a/templates/modules/donation-input-box.html b/src/templates/modules/donation-input-box.html similarity index 100% rename from templates/modules/donation-input-box.html rename to src/templates/modules/donation-input-box.html diff --git a/templates/modules/download-button.html b/src/templates/modules/download-button.html similarity index 100% rename from templates/modules/download-button.html rename to src/templates/modules/download-button.html diff --git a/templates/modules/map.html b/src/templates/modules/map.html similarity index 100% rename from templates/modules/map.html rename to src/templates/modules/map.html diff --git a/templates/modules/menu.html b/src/templates/modules/menu.html similarity index 100% rename from templates/modules/menu.html rename to src/templates/modules/menu.html diff --git a/templates/modules/mirrors-table.html b/src/templates/modules/mirrors-table.html similarity index 100% rename from templates/modules/mirrors-table.html rename to src/templates/modules/mirrors-table.html diff --git a/templates/modules/news-item.html b/src/templates/modules/news-item.html similarity index 100% rename from templates/modules/news-item.html rename to src/templates/modules/news-item.html diff --git a/templates/modules/news-line.html b/src/templates/modules/news-line.html similarity index 100% rename from templates/modules/news-line.html rename to src/templates/modules/news-line.html diff --git a/templates/modules/news-preview.html b/src/templates/modules/news-preview.html similarity index 100% rename from templates/modules/news-preview.html rename to src/templates/modules/news-preview.html diff --git a/templates/modules/news-table.html b/src/templates/modules/news-table.html similarity index 100% rename from templates/modules/news-table.html rename to src/templates/modules/news-table.html diff --git a/templates/modules/news-year-nav.html b/src/templates/modules/news-year-nav.html similarity index 100% rename from templates/modules/news-year-nav.html rename to src/templates/modules/news-year-nav.html diff --git a/templates/modules/planet-entry.html b/src/templates/modules/planet-entry.html similarity index 100% rename from templates/modules/planet-entry.html rename to src/templates/modules/planet-entry.html diff --git a/templates/modules/planet/search-box.html b/src/templates/modules/planet/search-box.html similarity index 100% rename from templates/modules/planet/search-box.html rename to src/templates/modules/planet/search-box.html diff --git a/templates/modules/progress-bar.html b/src/templates/modules/progress-bar.html similarity index 100% rename from templates/modules/progress-bar.html rename to src/templates/modules/progress-bar.html diff --git a/templates/modules/release-item-short.html b/src/templates/modules/release-item-short.html similarity index 100% rename from templates/modules/release-item-short.html rename to src/templates/modules/release-item-short.html diff --git a/templates/modules/release-item.html b/src/templates/modules/release-item.html similarity index 100% rename from templates/modules/release-item.html rename to src/templates/modules/release-item.html diff --git a/templates/modules/sidebar-banner.html b/src/templates/modules/sidebar-banner.html similarity index 100% rename from templates/modules/sidebar-banner.html rename to src/templates/modules/sidebar-banner.html diff --git a/templates/modules/sidebar-item.html b/src/templates/modules/sidebar-item.html similarity index 100% rename from templates/modules/sidebar-item.html rename to src/templates/modules/sidebar-item.html diff --git a/templates/modules/sidebar-release.html b/src/templates/modules/sidebar-release.html similarity index 100% rename from templates/modules/sidebar-release.html rename to src/templates/modules/sidebar-release.html diff --git a/templates/modules/stasy-table.html b/src/templates/modules/stasy-table.html similarity index 100% rename from templates/modules/stasy-table.html rename to src/templates/modules/stasy-table.html diff --git a/templates/netboot/menu-config.cfg b/src/templates/netboot/menu-config.cfg similarity index 100% rename from templates/netboot/menu-config.cfg rename to src/templates/netboot/menu-config.cfg diff --git a/templates/netboot/menu-header.cfg b/src/templates/netboot/menu-header.cfg similarity index 100% rename from templates/netboot/menu-header.cfg rename to src/templates/netboot/menu-header.cfg diff --git a/templates/netboot/menu-separator.cfg b/src/templates/netboot/menu-separator.cfg similarity index 100% rename from templates/netboot/menu-separator.cfg rename to src/templates/netboot/menu-separator.cfg diff --git a/templates/netboot/menu.cfg b/src/templates/netboot/menu.cfg similarity index 100% rename from templates/netboot/menu.cfg rename to src/templates/netboot/menu.cfg diff --git a/templates/netboot/premenu.cfg b/src/templates/netboot/premenu.cfg similarity index 100% rename from templates/netboot/premenu.cfg rename to src/templates/netboot/premenu.cfg diff --git a/templates/news-item.html b/src/templates/news-item.html similarity index 100% rename from templates/news-item.html rename to src/templates/news-item.html diff --git a/templates/news-year.html b/src/templates/news-year.html similarity index 100% rename from templates/news-year.html rename to src/templates/news-year.html diff --git a/templates/news.html b/src/templates/news.html similarity index 100% rename from templates/news.html rename to src/templates/news.html diff --git a/templates/nopaste/create.html b/src/templates/nopaste/create.html similarity index 100% rename from templates/nopaste/create.html rename to src/templates/nopaste/create.html diff --git a/templates/nopaste/view.html b/src/templates/nopaste/view.html similarity index 100% rename from templates/nopaste/view.html rename to src/templates/nopaste/view.html diff --git a/templates/planet/base.html b/src/templates/planet/base.html similarity index 100% rename from templates/planet/base.html rename to src/templates/planet/base.html diff --git a/templates/planet/hottest.html b/src/templates/planet/hottest.html similarity index 100% rename from templates/planet/hottest.html rename to src/templates/planet/hottest.html diff --git a/templates/planet/index.html b/src/templates/planet/index.html similarity index 100% rename from templates/planet/index.html rename to src/templates/planet/index.html diff --git a/templates/planet/list.html b/src/templates/planet/list.html similarity index 100% rename from templates/planet/list.html rename to src/templates/planet/list.html diff --git a/templates/planet/modules/author-box.html b/src/templates/planet/modules/author-box.html similarity index 100% rename from templates/planet/modules/author-box.html rename to src/templates/planet/modules/author-box.html diff --git a/templates/planet/posting.html b/src/templates/planet/posting.html similarity index 100% rename from templates/planet/posting.html rename to src/templates/planet/posting.html diff --git a/templates/planet/search.html b/src/templates/planet/search.html similarity index 100% rename from templates/planet/search.html rename to src/templates/planet/search.html diff --git a/templates/sources.html b/src/templates/sources.html similarity index 100% rename from templates/sources.html rename to src/templates/sources.html diff --git a/templates/static/artwork.html b/src/templates/static/artwork.html similarity index 100% rename from templates/static/artwork.html rename to src/templates/static/artwork.html diff --git a/templates/static/chat.html b/src/templates/static/chat.html similarity index 100% rename from templates/static/chat.html rename to src/templates/static/chat.html diff --git a/templates/static/features.html b/src/templates/static/features.html similarity index 100% rename from templates/static/features.html rename to src/templates/static/features.html diff --git a/templates/static/get-involved.html b/src/templates/static/get-involved.html similarity index 100% rename from templates/static/get-involved.html rename to src/templates/static/get-involved.html diff --git a/templates/static/get-started.html b/src/templates/static/get-started.html similarity index 100% rename from templates/static/get-started.html rename to src/templates/static/get-started.html diff --git a/templates/static/get-support.html b/src/templates/static/get-support.html similarity index 100% rename from templates/static/get-support.html rename to src/templates/static/get-support.html diff --git a/templates/static/hardware.html b/src/templates/static/hardware.html similarity index 100% rename from templates/static/hardware.html rename to src/templates/static/hardware.html diff --git a/templates/static/legal.html b/src/templates/static/legal.html similarity index 100% rename from templates/static/legal.html rename to src/templates/static/legal.html diff --git a/templates/talk/conferences.html b/src/templates/talk/conferences.html similarity index 100% rename from templates/talk/conferences.html rename to src/templates/talk/conferences.html diff --git a/templates/talk/confirm-hangup.html b/src/templates/talk/confirm-hangup.html similarity index 100% rename from templates/talk/confirm-hangup.html rename to src/templates/talk/confirm-hangup.html diff --git a/templates/talk/diagnosis.html b/src/templates/talk/diagnosis.html similarity index 100% rename from templates/talk/diagnosis.html rename to src/templates/talk/diagnosis.html diff --git a/templates/talk/index.html b/src/templates/talk/index.html similarity index 100% rename from templates/talk/index.html rename to src/templates/talk/index.html diff --git a/templates/talk/modules/call-log.html b/src/templates/talk/modules/call-log.html similarity index 100% rename from templates/talk/modules/call-log.html rename to src/templates/talk/modules/call-log.html diff --git a/templates/talk/modules/contact.html b/src/templates/talk/modules/contact.html similarity index 100% rename from templates/talk/modules/contact.html rename to src/templates/talk/modules/contact.html diff --git a/templates/talk/modules/lines.html b/src/templates/talk/modules/lines.html similarity index 100% rename from templates/talk/modules/lines.html rename to src/templates/talk/modules/lines.html diff --git a/templates/talk/modules/ongoing-calls.html b/src/templates/talk/modules/ongoing-calls.html similarity index 100% rename from templates/talk/modules/ongoing-calls.html rename to src/templates/talk/modules/ongoing-calls.html diff --git a/templates/talk/phonebook-contact.html b/src/templates/talk/phonebook-contact.html similarity index 100% rename from templates/talk/phonebook-contact.html rename to src/templates/talk/phonebook-contact.html diff --git a/templates/talk/phonebook.html b/src/templates/talk/phonebook.html similarity index 100% rename from templates/talk/phonebook.html rename to src/templates/talk/phonebook.html diff --git a/webapp/__init__.py b/src/web/__init__.py similarity index 100% rename from webapp/__init__.py rename to src/web/__init__.py diff --git a/webapp/handlers.py b/src/web/handlers.py similarity index 100% rename from webapp/handlers.py rename to src/web/handlers.py diff --git a/webapp/handlers_accounts.py b/src/web/handlers_accounts.py similarity index 100% rename from webapp/handlers_accounts.py rename to src/web/handlers_accounts.py diff --git a/webapp/handlers_admin.py b/src/web/handlers_admin.py similarity index 100% rename from webapp/handlers_admin.py rename to src/web/handlers_admin.py diff --git a/webapp/handlers_base.py b/src/web/handlers_base.py similarity index 100% rename from webapp/handlers_base.py rename to src/web/handlers_base.py diff --git a/webapp/handlers_boot.py b/src/web/handlers_boot.py similarity index 100% rename from webapp/handlers_boot.py rename to src/web/handlers_boot.py diff --git a/webapp/handlers_download.py b/src/web/handlers_download.py similarity index 100% rename from webapp/handlers_download.py rename to src/web/handlers_download.py diff --git a/webapp/handlers_fireinfo.py b/src/web/handlers_fireinfo.py similarity index 100% rename from webapp/handlers_fireinfo.py rename to src/web/handlers_fireinfo.py diff --git a/webapp/handlers_iuse.py b/src/web/handlers_iuse.py similarity index 100% rename from webapp/handlers_iuse.py rename to src/web/handlers_iuse.py diff --git a/webapp/handlers_mirrors.py b/src/web/handlers_mirrors.py similarity index 100% rename from webapp/handlers_mirrors.py rename to src/web/handlers_mirrors.py diff --git a/webapp/handlers_news.py b/src/web/handlers_news.py similarity index 100% rename from webapp/handlers_news.py rename to src/web/handlers_news.py diff --git a/webapp/handlers_nopaste.py b/src/web/handlers_nopaste.py similarity index 100% rename from webapp/handlers_nopaste.py rename to src/web/handlers_nopaste.py diff --git a/webapp/handlers_planet.py b/src/web/handlers_planet.py similarity index 100% rename from webapp/handlers_planet.py rename to src/web/handlers_planet.py diff --git a/webapp/handlers_rss.py b/src/web/handlers_rss.py similarity index 100% rename from webapp/handlers_rss.py rename to src/web/handlers_rss.py diff --git a/webapp/handlers_talk.py b/src/web/handlers_talk.py similarity index 100% rename from webapp/handlers_talk.py rename to src/web/handlers_talk.py diff --git a/webapp/ui_modules.py b/src/web/ui_modules.py similarity index 100% rename from webapp/ui_modules.py rename to src/web/ui_modules.py diff --git a/webapp.init b/webapp.init deleted file mode 100755 index bf509ab6..00000000 --- a/webapp.init +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash - -HOMEDIR=$(dirname $(readlink $0)) -LOGFILE=/var/log/webapp/error.log - -case "$1" in - start) - if ps ax | grep -v grep | grep webapp.py > /dev/null - then - echo "webapp is allready running..." - else - echo "Starting webapp..." - cd ${HOMEDIR} && ./webapp.py >>${LOGFILE} 2>&1 & - fi - ;; - - stop) - if ps ax | grep -v grep | grep webapp.py > /dev/null - then - echo "Stopping webapp..." - killall webapp.py &> /dev/null - else - echo "webapp is not running..." - fi - ;; - - restart) - $0 stop - sleep 2 - $0 start - ;; - - check) - if ps ax | grep -v grep | grep webapp.py > /dev/null - then - : -# echo "webapp is running..." - else - echo "webapp is not running!" - $0 start - fi - ;; - - *) - echo "usage: webapp [ start | stop | restart | check ]" - ;; - -esac