diff --git a/.env.dev b/.env.dev
new file mode 100644
index 0000000000000000000000000000000000000000..aa1780104fc8a7a1ecad5625d7d906c48df02e09
--- /dev/null
+++ b/.env.dev
@@ -0,0 +1,5 @@
+NGINX_HOST=edocs.local
+BIND_IP=127.0.0.1
+BIND_PORT=80
+COMPOSE_PROJECT_NAME=user_docs
+IMAGE_TAG=master
diff --git a/.gitignore b/.gitignore
index 56a839703d4a83a181e10b1d23ea744dbe14da41..04a839aebb4075c4228a12786ac8df7ebb5155d3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,4 +3,6 @@ _site
.jekyll-metadata
.jekyll-cache
.idea
-_i18n/*.yml
\ No newline at end of file
+_i18n/*.yml
+*.log
+.env
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..aca9a29377cbd3fc6c0ce5f5a8960557570d77e3
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,52 @@
+# When using dind, it's wise to use the overlayfs driver for
+# improved performance.
+variables:
+ DOCKER_DRIVER: overlay2
+stages:
+ - build
+ - deploy
+default:
+ image: docker:20.10
+
+# Build stage
+.build:docker:
+ stage: build
+ tags:
+ - generic_privileged
+ services:
+ - docker:20.10-dind
+ before_script:
+ - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
+ script:
+ - docker build htdocs --pull -t "$CI_REGISTRY_IMAGE:$IMAGE_TAG" -f Dockerfile
+ - docker push "$CI_REGISTRY_IMAGE:$IMAGE_TAG"
+
+build:branch:
+ extends: .build:docker
+ rules:
+ - if: '$CI_COMMIT_TAG'
+ when: never
+ - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
+ when: never
+ - if: '$CI_PIPELINE_SOURCE =~ /schedule|web|api|trigger/ && $IMAGE_TAG != $CI_COMMIT_REF_SLUG'
+ when: never
+ - when: on_success
+ variables:
+ IMAGE_TAG: $CI_COMMIT_REF_SLUG
+
+# Deploy stage
+.deploy:compose:
+ stage: deploy
+ before_script:
+ - mkdir $HOME/.ssh
+ - chmod 700 ~/.ssh
+ # cannot use GitLab variable type File and cp here because key format
+ # gets garbled somehow; this doesn't happen with echo
+ - echo "$SSH_PRIVATE_KEY_ED" > $HOME/.ssh/id_ed25519
+ - echo "$SSH_PUBKEY_ED" > $HOME/.ssh/id_ed25519.pub
+ - echo "$SSH_KNOWN_HOSTS" > $HOME/.ssh/known_hosts
+ - chmod 600 ~/.ssh/id_ed25519
+ - chmod 644 ~/.ssh/known_hosts ~/.ssh/id_ed25519.pub
+ script:
+ - echo "Deploying to $CI_ENVIRONMENT_NAME ($DEPLOYMENT_HOST)"
+ - ssh $SSH_USER@$DEPLOYMENT_HOST "cd $DEPLOYMENT_PATH && sed -i 's/IMAGE_TAG=.*/IMAGE_TAG=$IMAGE_TAG/' .env && docker-compose pull && docker-compose up -d"
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..dbc7238176b9f95c9bc64bfea2a1700ebfa34894
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,10 @@
+FROM jekyll/jekyll:4.2.0 AS jekyll
+WORKDIR /tmp
+COPY . /tmp
+COPY --chown=jekyll:jekyll Gemfile Gemfile.lock /tmp/
+RUN date > /tmp/build_date
+RUN jekyll build -d ./build && rm /tmp/Gemfile*
+
+FROM nginx:1.20
+LABEL maintainer="dev@e.email"
+COPY --chown=www-data:www-data --from=jekyll /tmp/build/ /usr/share/nginx/html/
diff --git a/README.md b/README.md
index ff841b4ee9eb3dded35acb2f7c73d9dd1e8d222f..0ccc159d2d3fb6f387d0ce85e5dba3b50e66bc5d 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ The current documentation uses [Jekyll](https://jekyllrb.com/docs) as the static
For faster development process, the following command is recommended:
```shell
-$ docker run --rm --volume="$PWD:/srv/jekyll" -p 4000:4000 -p 35729:35729 -it jekyll/jekyll:4.2.0 jekyll serve --profile --incremental --livereload
+$ docker run --rm --volume="$PWD/htdocs:/srv/jekyll" -p 4000:4000 -p 35729:35729 -it jekyll/jekyll:4.2.0 jekyll serve --profile --incremental --livereload
```
Note: the port 35729 is used for live reload
@@ -14,7 +14,7 @@ Note: the port 35729 is used for live reload
Or you could use:
```shell
-$ docker run --rm --volume="$PWD:/srv/jekyll" -p 4000:4000 -it jekyll/jekyll:4.2.0 jekyll serve
+$ docker run --rm --volume="$PWD/htdocs:/srv/jekyll" -p 4000:4000 -it jekyll/jekyll:4.2.0 jekyll serve
```
Generate for a device
diff --git a/config/nginx/conf.d/default.conf b/config/nginx/conf.d/default.conf
new file mode 100644
index 0000000000000000000000000000000000000000..10c149d6b8459b5b37b48079d391d8cac753f7d9
--- /dev/null
+++ b/config/nginx/conf.d/default.conf
@@ -0,0 +1,23 @@
+server {
+ listen 80;
+ listen [::]:80;
+ server_name localhost;
+
+ rewrite ^/index.html$ / permanent;
+ rewrite ^(/.+)/$ $1 permanent;
+ rewrite ^(/.+)/index.html$ $1 permanent;
+
+ location / {
+ root /usr/share/nginx/html;
+ try_files $uri $uri.html $uri/index.html =404;
+ }
+
+ #error_page 404 /404.html;
+
+ # redirect server error pages to the static page /50x.html
+ #
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+}
diff --git a/config/nginx/nginx.conf b/config/nginx/nginx.conf
new file mode 100644
index 0000000000000000000000000000000000000000..9430328f6bbebb73d527cfe1d75a7da0b2b31183
--- /dev/null
+++ b/config/nginx/nginx.conf
@@ -0,0 +1,28 @@
+user nginx;
+worker_processes auto;
+
+error_log /var/log/nginx/error.log notice;
+pid /var/run/nginx.pid;
+
+events {
+ worker_connections 1024;
+}
+
+http {
+ include /etc/nginx/mime.types;
+ default_type application/octet-stream;
+
+ log_format main '0.0.0.0 - anonymous [$time_local] "$request" '
+ '$status $body_bytes_sent';
+
+ access_log /var/log/nginx/access.log main;
+
+ sendfile on;
+ #tcp_nopush on;
+
+ keepalive_timeout 65;
+
+ #gzip on;
+
+ include /etc/nginx/conf.d/*.conf;
+}
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000000000000000000000000000000000000..59db9b18014364d936457e21d6f2344679411750
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,16 @@
+version: '3.8'
+services:
+
+ nginx:
+ image: registry.gitlab.e.foundation:5000/e/documentation/user:${IMAGE_TAG}
+ container_name: 'nginx_${NGINX_HOST}'
+ restart: always
+ ports:
+ - '${BIND_IP}:${BIND_PORT}:80'
+ volumes:
+ - ./volumes/nginx/logs:/var/log/nginx
+ - ./config/nginx/nginx.conf:/etc/nginx/nginx.conf
+ - ./config/nginx/conf.d:/etc/nginx/conf.d
+ environment:
+ - NGINX_HOST=${NGINX_HOST}
+ - NGINX_PORT=80
diff --git a/404.html b/htdocs/404.html
similarity index 100%
rename from 404.html
rename to htdocs/404.html
diff --git a/Gemfile b/htdocs/Gemfile
similarity index 100%
rename from Gemfile
rename to htdocs/Gemfile
diff --git a/Gemfile.lock b/htdocs/Gemfile.lock
similarity index 100%
rename from Gemfile.lock
rename to htdocs/Gemfile.lock
diff --git a/_config.yml b/htdocs/_config.yml
similarity index 98%
rename from _config.yml
rename to htdocs/_config.yml
index 1fc44f05c6372447079c8866746fcd6cd5fc528a..f3f54985511ab17c932f7e1cbe574b0a70b26af6 100644
--- a/_config.yml
+++ b/htdocs/_config.yml
@@ -40,4 +40,4 @@ fonts:
primary: century-gothic
- secondary: sans-serif
\ No newline at end of file
+ secondary: sans-serif
diff --git a/_data/devices/2e.yml b/htdocs/_data/devices/2e.yml
similarity index 100%
rename from _data/devices/2e.yml
rename to htdocs/_data/devices/2e.yml
diff --git a/_data/devices/Amber.yml b/htdocs/_data/devices/Amber.yml
similarity index 100%
rename from _data/devices/Amber.yml
rename to htdocs/_data/devices/Amber.yml
diff --git a/_data/devices/FP2.yml b/htdocs/_data/devices/FP2.yml
similarity index 100%
rename from _data/devices/FP2.yml
rename to htdocs/_data/devices/FP2.yml
diff --git a/_data/devices/FP3.yml b/htdocs/_data/devices/FP3.yml
similarity index 100%
rename from _data/devices/FP3.yml
rename to htdocs/_data/devices/FP3.yml
diff --git a/_data/devices/GS290.yml b/htdocs/_data/devices/GS290.yml
similarity index 100%
rename from _data/devices/GS290.yml
rename to htdocs/_data/devices/GS290.yml
diff --git a/_data/devices/I01WD.yml b/htdocs/_data/devices/I01WD.yml
similarity index 100%
rename from _data/devices/I01WD.yml
rename to htdocs/_data/devices/I01WD.yml
diff --git a/_data/devices/RMX1801.yml b/htdocs/_data/devices/RMX1801.yml
similarity index 100%
rename from _data/devices/RMX1801.yml
rename to htdocs/_data/devices/RMX1801.yml
diff --git a/_data/devices/X00TD.yml b/htdocs/_data/devices/X00TD.yml
similarity index 100%
rename from _data/devices/X00TD.yml
rename to htdocs/_data/devices/X00TD.yml
diff --git a/_data/devices/X01BD.yml b/htdocs/_data/devices/X01BD.yml
similarity index 100%
rename from _data/devices/X01BD.yml
rename to htdocs/_data/devices/X01BD.yml
diff --git a/_data/devices/YTX703F.yml b/htdocs/_data/devices/YTX703F.yml
similarity index 100%
rename from _data/devices/YTX703F.yml
rename to htdocs/_data/devices/YTX703F.yml
diff --git a/_data/devices/YTX703L.yml b/htdocs/_data/devices/YTX703L.yml
similarity index 100%
rename from _data/devices/YTX703L.yml
rename to htdocs/_data/devices/YTX703L.yml
diff --git a/_data/devices/a3xelte.yml b/htdocs/_data/devices/a3xelte.yml
similarity index 100%
rename from _data/devices/a3xelte.yml
rename to htdocs/_data/devices/a3xelte.yml
diff --git a/_data/devices/a5xelte.yml b/htdocs/_data/devices/a5xelte.yml
similarity index 100%
rename from _data/devices/a5xelte.yml
rename to htdocs/_data/devices/a5xelte.yml
diff --git a/_data/devices/a5y17lte.yml b/htdocs/_data/devices/a5y17lte.yml
similarity index 100%
rename from _data/devices/a5y17lte.yml
rename to htdocs/_data/devices/a5y17lte.yml
diff --git a/_data/devices/a7y17lte.yml b/htdocs/_data/devices/a7y17lte.yml
similarity index 100%
rename from _data/devices/a7y17lte.yml
rename to htdocs/_data/devices/a7y17lte.yml
diff --git a/_data/devices/addison.yml b/htdocs/_data/devices/addison.yml
similarity index 100%
rename from _data/devices/addison.yml
rename to htdocs/_data/devices/addison.yml
diff --git a/_data/devices/albus.yml b/htdocs/_data/devices/albus.yml
similarity index 100%
rename from _data/devices/albus.yml
rename to htdocs/_data/devices/albus.yml
diff --git a/_data/devices/angler.yml b/htdocs/_data/devices/angler.yml
similarity index 100%
rename from _data/devices/angler.yml
rename to htdocs/_data/devices/angler.yml
diff --git a/_data/devices/athene.yml b/htdocs/_data/devices/athene.yml
similarity index 100%
rename from _data/devices/athene.yml
rename to htdocs/_data/devices/athene.yml
diff --git a/_data/devices/axon7.yml b/htdocs/_data/devices/axon7.yml
similarity index 100%
rename from _data/devices/axon7.yml
rename to htdocs/_data/devices/axon7.yml
diff --git a/_data/devices/bacon.yml b/htdocs/_data/devices/bacon.yml
similarity index 100%
rename from _data/devices/bacon.yml
rename to htdocs/_data/devices/bacon.yml
diff --git a/_data/devices/bardock.yml b/htdocs/_data/devices/bardock.yml
similarity index 100%
rename from _data/devices/bardock.yml
rename to htdocs/_data/devices/bardock.yml
diff --git a/_data/devices/bardockpro.yml b/htdocs/_data/devices/bardockpro.yml
similarity index 100%
rename from _data/devices/bardockpro.yml
rename to htdocs/_data/devices/bardockpro.yml
diff --git a/_data/devices/beryllium.yml b/htdocs/_data/devices/beryllium.yml
similarity index 100%
rename from _data/devices/beryllium.yml
rename to htdocs/_data/devices/beryllium.yml
diff --git a/_data/devices/bullhead.yml b/htdocs/_data/devices/bullhead.yml
similarity index 100%
rename from _data/devices/bullhead.yml
rename to htdocs/_data/devices/bullhead.yml
diff --git a/_data/devices/cancro.yml b/htdocs/_data/devices/cancro.yml
similarity index 100%
rename from _data/devices/cancro.yml
rename to htdocs/_data/devices/cancro.yml
diff --git a/_data/devices/capricorn.yml b/htdocs/_data/devices/capricorn.yml
similarity index 100%
rename from _data/devices/capricorn.yml
rename to htdocs/_data/devices/capricorn.yml
diff --git a/_data/devices/cheeseburger.yml b/htdocs/_data/devices/cheeseburger.yml
similarity index 100%
rename from _data/devices/cheeseburger.yml
rename to htdocs/_data/devices/cheeseburger.yml
diff --git a/_data/devices/chef.yml b/htdocs/_data/devices/chef.yml
similarity index 100%
rename from _data/devices/chef.yml
rename to htdocs/_data/devices/chef.yml
diff --git a/_data/devices/cheryl.yml b/htdocs/_data/devices/cheryl.yml
similarity index 100%
rename from _data/devices/cheryl.yml
rename to htdocs/_data/devices/cheryl.yml
diff --git a/_data/devices/chiron.yml b/htdocs/_data/devices/chiron.yml
similarity index 100%
rename from _data/devices/chiron.yml
rename to htdocs/_data/devices/chiron.yml
diff --git a/_data/devices/condor.yml b/htdocs/_data/devices/condor.yml
similarity index 100%
rename from _data/devices/condor.yml
rename to htdocs/_data/devices/condor.yml
diff --git a/_data/devices/crackling.yml b/htdocs/_data/devices/crackling.yml
similarity index 100%
rename from _data/devices/crackling.yml
rename to htdocs/_data/devices/crackling.yml
diff --git a/_data/devices/crownlte.yml b/htdocs/_data/devices/crownlte.yml
similarity index 100%
rename from _data/devices/crownlte.yml
rename to htdocs/_data/devices/crownlte.yml
diff --git a/_data/devices/d802.yml b/htdocs/_data/devices/d802.yml
similarity index 100%
rename from _data/devices/d802.yml
rename to htdocs/_data/devices/d802.yml
diff --git a/_data/devices/d855.yml b/htdocs/_data/devices/d855.yml
similarity index 100%
rename from _data/devices/d855.yml
rename to htdocs/_data/devices/d855.yml
diff --git a/_data/devices/dipper.yml b/htdocs/_data/devices/dipper.yml
similarity index 100%
rename from _data/devices/dipper.yml
rename to htdocs/_data/devices/dipper.yml
diff --git a/_data/devices/discovery.yml b/htdocs/_data/devices/discovery.yml
similarity index 100%
rename from _data/devices/discovery.yml
rename to htdocs/_data/devices/discovery.yml
diff --git a/_data/devices/dream2lte.yml b/htdocs/_data/devices/dream2lte.yml
similarity index 100%
rename from _data/devices/dream2lte.yml
rename to htdocs/_data/devices/dream2lte.yml
diff --git a/_data/devices/dreamlte.yml b/htdocs/_data/devices/dreamlte.yml
similarity index 100%
rename from _data/devices/dreamlte.yml
rename to htdocs/_data/devices/dreamlte.yml
diff --git a/_data/devices/dumpling.yml b/htdocs/_data/devices/dumpling.yml
similarity index 100%
rename from _data/devices/dumpling.yml
rename to htdocs/_data/devices/dumpling.yml
diff --git a/_data/devices/enchilada.yml b/htdocs/_data/devices/enchilada.yml
similarity index 100%
rename from _data/devices/enchilada.yml
rename to htdocs/_data/devices/enchilada.yml
diff --git a/_data/devices/ether.yml b/htdocs/_data/devices/ether.yml
similarity index 100%
rename from _data/devices/ether.yml
rename to htdocs/_data/devices/ether.yml
diff --git a/_data/devices/evert.yml b/htdocs/_data/devices/evert.yml
similarity index 100%
rename from _data/devices/evert.yml
rename to htdocs/_data/devices/evert.yml
diff --git a/_data/devices/f1f.yml b/htdocs/_data/devices/f1f.yml
similarity index 100%
rename from _data/devices/f1f.yml
rename to htdocs/_data/devices/f1f.yml
diff --git a/_data/devices/fajita.yml b/htdocs/_data/devices/fajita.yml
similarity index 100%
rename from _data/devices/fajita.yml
rename to htdocs/_data/devices/fajita.yml
diff --git a/_data/devices/falcon.yml b/htdocs/_data/devices/falcon.yml
similarity index 100%
rename from _data/devices/falcon.yml
rename to htdocs/_data/devices/falcon.yml
diff --git a/_data/devices/gemini.yml b/htdocs/_data/devices/gemini.yml
similarity index 100%
rename from _data/devices/gemini.yml
rename to htdocs/_data/devices/gemini.yml
diff --git a/_data/devices/ginkgo.yml b/htdocs/_data/devices/ginkgo.yml
similarity index 100%
rename from _data/devices/ginkgo.yml
rename to htdocs/_data/devices/ginkgo.yml
diff --git a/_data/devices/griffin.yml b/htdocs/_data/devices/griffin.yml
similarity index 100%
rename from _data/devices/griffin.yml
rename to htdocs/_data/devices/griffin.yml
diff --git a/_data/devices/gts210vewifi.yml b/htdocs/_data/devices/gts210vewifi.yml
similarity index 100%
rename from _data/devices/gts210vewifi.yml
rename to htdocs/_data/devices/gts210vewifi.yml
diff --git a/_data/devices/gts28vewifi.yml b/htdocs/_data/devices/gts28vewifi.yml
similarity index 100%
rename from _data/devices/gts28vewifi.yml
rename to htdocs/_data/devices/gts28vewifi.yml
diff --git a/_data/devices/gts4lvwifi.yml b/htdocs/_data/devices/gts4lvwifi.yml
similarity index 100%
rename from _data/devices/gts4lvwifi.yml
rename to htdocs/_data/devices/gts4lvwifi.yml
diff --git a/_data/devices/guacamole.yml b/htdocs/_data/devices/guacamole.yml
similarity index 100%
rename from _data/devices/guacamole.yml
rename to htdocs/_data/devices/guacamole.yml
diff --git a/_data/devices/guacamoleb.yml b/htdocs/_data/devices/guacamoleb.yml
similarity index 100%
rename from _data/devices/guacamoleb.yml
rename to htdocs/_data/devices/guacamoleb.yml
diff --git a/_data/devices/h850.yml b/htdocs/_data/devices/h850.yml
similarity index 100%
rename from _data/devices/h850.yml
rename to htdocs/_data/devices/h850.yml
diff --git a/_data/devices/h990.yml b/htdocs/_data/devices/h990.yml
similarity index 100%
rename from _data/devices/h990.yml
rename to htdocs/_data/devices/h990.yml
diff --git a/_data/devices/ha3g.yml b/htdocs/_data/devices/ha3g.yml
similarity index 100%
rename from _data/devices/ha3g.yml
rename to htdocs/_data/devices/ha3g.yml
diff --git a/_data/devices/ham.yml b/htdocs/_data/devices/ham.yml
similarity index 100%
rename from _data/devices/ham.yml
rename to htdocs/_data/devices/ham.yml
diff --git a/_data/devices/hammerhead.yml b/htdocs/_data/devices/hammerhead.yml
similarity index 100%
rename from _data/devices/hammerhead.yml
rename to htdocs/_data/devices/hammerhead.yml
diff --git a/_data/devices/harpia.yml b/htdocs/_data/devices/harpia.yml
similarity index 100%
rename from _data/devices/harpia.yml
rename to htdocs/_data/devices/harpia.yml
diff --git a/_data/devices/hero2lte.yml b/htdocs/_data/devices/hero2lte.yml
similarity index 100%
rename from _data/devices/hero2lte.yml
rename to htdocs/_data/devices/hero2lte.yml
diff --git a/_data/devices/herolte.yml b/htdocs/_data/devices/herolte.yml
similarity index 100%
rename from _data/devices/herolte.yml
rename to htdocs/_data/devices/herolte.yml
diff --git a/_data/devices/hiaeuhl.yml b/htdocs/_data/devices/hiaeuhl.yml
similarity index 100%
rename from _data/devices/hiaeuhl.yml
rename to htdocs/_data/devices/hiaeuhl.yml
diff --git a/_data/devices/hlte.yml b/htdocs/_data/devices/hlte.yml
similarity index 100%
rename from _data/devices/hlte.yml
rename to htdocs/_data/devices/hlte.yml
diff --git a/_data/devices/i9300.yml b/htdocs/_data/devices/i9300.yml
similarity index 100%
rename from _data/devices/i9300.yml
rename to htdocs/_data/devices/i9300.yml
diff --git a/_data/devices/i9305.yml b/htdocs/_data/devices/i9305.yml
similarity index 100%
rename from _data/devices/i9305.yml
rename to htdocs/_data/devices/i9305.yml
diff --git a/_data/devices/j53gxx.yml b/htdocs/_data/devices/j53gxx.yml
similarity index 100%
rename from _data/devices/j53gxx.yml
rename to htdocs/_data/devices/j53gxx.yml
diff --git a/_data/devices/j5lte.yml b/htdocs/_data/devices/j5lte.yml
similarity index 100%
rename from _data/devices/j5lte.yml
rename to htdocs/_data/devices/j5lte.yml
diff --git a/_data/devices/j5ltechn.yml b/htdocs/_data/devices/j5ltechn.yml
similarity index 100%
rename from _data/devices/j5ltechn.yml
rename to htdocs/_data/devices/j5ltechn.yml
diff --git a/_data/devices/j5nlte.yml b/htdocs/_data/devices/j5nlte.yml
similarity index 100%
rename from _data/devices/j5nlte.yml
rename to htdocs/_data/devices/j5nlte.yml
diff --git a/_data/devices/j7elte.yml b/htdocs/_data/devices/j7elte.yml
similarity index 100%
rename from _data/devices/j7elte.yml
rename to htdocs/_data/devices/j7elte.yml
diff --git a/_data/devices/jactivelte.yml b/htdocs/_data/devices/jactivelte.yml
similarity index 100%
rename from _data/devices/jactivelte.yml
rename to htdocs/_data/devices/jactivelte.yml
diff --git a/_data/devices/jalebi.yml b/htdocs/_data/devices/jalebi.yml
similarity index 100%
rename from _data/devices/jalebi.yml
rename to htdocs/_data/devices/jalebi.yml
diff --git a/_data/devices/jasmine_sprout.yml b/htdocs/_data/devices/jasmine_sprout.yml
similarity index 100%
rename from _data/devices/jasmine_sprout.yml
rename to htdocs/_data/devices/jasmine_sprout.yml
diff --git a/_data/devices/jason.yml b/htdocs/_data/devices/jason.yml
similarity index 100%
rename from _data/devices/jason.yml
rename to htdocs/_data/devices/jason.yml
diff --git a/_data/devices/kccat6.yml b/htdocs/_data/devices/kccat6.yml
similarity index 100%
rename from _data/devices/kccat6.yml
rename to htdocs/_data/devices/kccat6.yml
diff --git a/_data/devices/kenzo.yml b/htdocs/_data/devices/kenzo.yml
similarity index 100%
rename from _data/devices/kenzo.yml
rename to htdocs/_data/devices/kenzo.yml
diff --git a/_data/devices/kirin.yml b/htdocs/_data/devices/kirin.yml
similarity index 100%
rename from _data/devices/kirin.yml
rename to htdocs/_data/devices/kirin.yml
diff --git a/_data/devices/kiwi.yml b/htdocs/_data/devices/kiwi.yml
similarity index 100%
rename from _data/devices/kiwi.yml
rename to htdocs/_data/devices/kiwi.yml
diff --git a/_data/devices/klte.yml b/htdocs/_data/devices/klte.yml
similarity index 100%
rename from _data/devices/klte.yml
rename to htdocs/_data/devices/klte.yml
diff --git a/_data/devices/klteactivexx.yml b/htdocs/_data/devices/klteactivexx.yml
similarity index 100%
rename from _data/devices/klteactivexx.yml
rename to htdocs/_data/devices/klteactivexx.yml
diff --git a/_data/devices/kuntao.yml b/htdocs/_data/devices/kuntao.yml
similarity index 100%
rename from _data/devices/kuntao.yml
rename to htdocs/_data/devices/kuntao.yml
diff --git a/_data/devices/lake.yml b/htdocs/_data/devices/lake.yml
similarity index 100%
rename from _data/devices/lake.yml
rename to htdocs/_data/devices/lake.yml
diff --git a/_data/devices/land.yml b/htdocs/_data/devices/land.yml
similarity index 100%
rename from _data/devices/land.yml
rename to htdocs/_data/devices/land.yml
diff --git a/_data/devices/lavender.yml b/htdocs/_data/devices/lavender.yml
similarity index 100%
rename from _data/devices/lavender.yml
rename to htdocs/_data/devices/lavender.yml
diff --git a/_data/devices/libra.yml b/htdocs/_data/devices/libra.yml
similarity index 100%
rename from _data/devices/libra.yml
rename to htdocs/_data/devices/libra.yml
diff --git a/_data/devices/lithium.yml b/htdocs/_data/devices/lithium.yml
similarity index 100%
rename from _data/devices/lithium.yml
rename to htdocs/_data/devices/lithium.yml
diff --git a/_data/devices/lux.yml b/htdocs/_data/devices/lux.yml
similarity index 100%
rename from _data/devices/lux.yml
rename to htdocs/_data/devices/lux.yml
diff --git a/_data/devices/m8.yml b/htdocs/_data/devices/m8.yml
similarity index 100%
rename from _data/devices/m8.yml
rename to htdocs/_data/devices/m8.yml
diff --git a/_data/devices/m8d.yml b/htdocs/_data/devices/m8d.yml
similarity index 100%
rename from _data/devices/m8d.yml
rename to htdocs/_data/devices/m8d.yml
diff --git a/_data/devices/mako.yml b/htdocs/_data/devices/mako.yml
similarity index 100%
rename from _data/devices/mako.yml
rename to htdocs/_data/devices/mako.yml
diff --git a/_data/devices/marlin.yml b/htdocs/_data/devices/marlin.yml
similarity index 100%
rename from _data/devices/marlin.yml
rename to htdocs/_data/devices/marlin.yml
diff --git a/_data/devices/mata.yml b/htdocs/_data/devices/mata.yml
similarity index 100%
rename from _data/devices/mata.yml
rename to htdocs/_data/devices/mata.yml
diff --git a/_data/devices/merlin.yml b/htdocs/_data/devices/merlin.yml
similarity index 100%
rename from _data/devices/merlin.yml
rename to htdocs/_data/devices/merlin.yml
diff --git a/_data/devices/mermaid.yml b/htdocs/_data/devices/mermaid.yml
similarity index 100%
rename from _data/devices/mermaid.yml
rename to htdocs/_data/devices/mermaid.yml
diff --git a/_data/devices/mido.yml b/htdocs/_data/devices/mido.yml
similarity index 100%
rename from _data/devices/mido.yml
rename to htdocs/_data/devices/mido.yml
diff --git a/_data/devices/n7100.yml b/htdocs/_data/devices/n7100.yml
similarity index 100%
rename from _data/devices/n7100.yml
rename to htdocs/_data/devices/n7100.yml
diff --git a/_data/devices/nash.yml b/htdocs/_data/devices/nash.yml
similarity index 100%
rename from _data/devices/nash.yml
rename to htdocs/_data/devices/nash.yml
diff --git a/_data/devices/natrium.yml b/htdocs/_data/devices/natrium.yml
similarity index 100%
rename from _data/devices/natrium.yml
rename to htdocs/_data/devices/natrium.yml
diff --git a/_data/devices/nx563j.yml b/htdocs/_data/devices/nx563j.yml
similarity index 100%
rename from _data/devices/nx563j.yml
rename to htdocs/_data/devices/nx563j.yml
diff --git a/_data/devices/onclite.yml b/htdocs/_data/devices/onclite.yml
similarity index 100%
rename from _data/devices/onclite.yml
rename to htdocs/_data/devices/onclite.yml
diff --git a/_data/devices/oneplus2.yml b/htdocs/_data/devices/oneplus2.yml
similarity index 100%
rename from _data/devices/oneplus2.yml
rename to htdocs/_data/devices/oneplus2.yml
diff --git a/_data/devices/oneplus3.yml b/htdocs/_data/devices/oneplus3.yml
similarity index 100%
rename from _data/devices/oneplus3.yml
rename to htdocs/_data/devices/oneplus3.yml
diff --git a/_data/devices/onyx.yml b/htdocs/_data/devices/onyx.yml
similarity index 100%
rename from _data/devices/onyx.yml
rename to htdocs/_data/devices/onyx.yml
diff --git a/_data/devices/osprey.yml b/htdocs/_data/devices/osprey.yml
similarity index 100%
rename from _data/devices/osprey.yml
rename to htdocs/_data/devices/osprey.yml
diff --git a/_data/devices/payton.yml b/htdocs/_data/devices/payton.yml
similarity index 100%
rename from _data/devices/payton.yml
rename to htdocs/_data/devices/payton.yml
diff --git a/_data/devices/peregrine.yml b/htdocs/_data/devices/peregrine.yml
similarity index 100%
rename from _data/devices/peregrine.yml
rename to htdocs/_data/devices/peregrine.yml
diff --git a/_data/devices/pioneer.yml b/htdocs/_data/devices/pioneer.yml
similarity index 100%
rename from _data/devices/pioneer.yml
rename to htdocs/_data/devices/pioneer.yml
diff --git a/_data/devices/pme.yml b/htdocs/_data/devices/pme.yml
similarity index 100%
rename from _data/devices/pme.yml
rename to htdocs/_data/devices/pme.yml
diff --git a/_data/devices/polaris.yml b/htdocs/_data/devices/polaris.yml
similarity index 100%
rename from _data/devices/polaris.yml
rename to htdocs/_data/devices/polaris.yml
diff --git a/_data/devices/r5.yml b/htdocs/_data/devices/r5.yml
similarity index 100%
rename from _data/devices/r5.yml
rename to htdocs/_data/devices/r5.yml
diff --git a/_data/devices/r7plus.yml b/htdocs/_data/devices/r7plus.yml
similarity index 100%
rename from _data/devices/r7plus.yml
rename to htdocs/_data/devices/r7plus.yml
diff --git a/_data/devices/r7sf.yml b/htdocs/_data/devices/r7sf.yml
similarity index 100%
rename from _data/devices/r7sf.yml
rename to htdocs/_data/devices/r7sf.yml
diff --git a/_data/devices/river.yml b/htdocs/_data/devices/river.yml
similarity index 100%
rename from _data/devices/river.yml
rename to htdocs/_data/devices/river.yml
diff --git a/_data/devices/s2.yml b/htdocs/_data/devices/s2.yml
similarity index 100%
rename from _data/devices/s2.yml
rename to htdocs/_data/devices/s2.yml
diff --git a/_data/devices/s3ve3gds.yml b/htdocs/_data/devices/s3ve3gds.yml
similarity index 100%
rename from _data/devices/s3ve3gds.yml
rename to htdocs/_data/devices/s3ve3gds.yml
diff --git a/_data/devices/s3ve3gjv.yml b/htdocs/_data/devices/s3ve3gjv.yml
similarity index 100%
rename from _data/devices/s3ve3gjv.yml
rename to htdocs/_data/devices/s3ve3gjv.yml
diff --git a/_data/devices/s3ve3gxx.yml b/htdocs/_data/devices/s3ve3gxx.yml
similarity index 100%
rename from _data/devices/s3ve3gxx.yml
rename to htdocs/_data/devices/s3ve3gxx.yml
diff --git a/_data/devices/s5neolte.yml b/htdocs/_data/devices/s5neolte.yml
similarity index 100%
rename from _data/devices/s5neolte.yml
rename to htdocs/_data/devices/s5neolte.yml
diff --git a/_data/devices/sagit.yml b/htdocs/_data/devices/sagit.yml
similarity index 100%
rename from _data/devices/sagit.yml
rename to htdocs/_data/devices/sagit.yml
diff --git a/_data/devices/sailfish.yml b/htdocs/_data/devices/sailfish.yml
similarity index 100%
rename from _data/devices/sailfish.yml
rename to htdocs/_data/devices/sailfish.yml
diff --git a/_data/devices/santoni.yml b/htdocs/_data/devices/santoni.yml
similarity index 100%
rename from _data/devices/santoni.yml
rename to htdocs/_data/devices/santoni.yml
diff --git a/_data/devices/scorpio.yml b/htdocs/_data/devices/scorpio.yml
similarity index 100%
rename from _data/devices/scorpio.yml
rename to htdocs/_data/devices/scorpio.yml
diff --git a/_data/devices/serrano3gxx.yml b/htdocs/_data/devices/serrano3gxx.yml
similarity index 100%
rename from _data/devices/serrano3gxx.yml
rename to htdocs/_data/devices/serrano3gxx.yml
diff --git a/_data/devices/serranodsdd.yml b/htdocs/_data/devices/serranodsdd.yml
similarity index 100%
rename from _data/devices/serranodsdd.yml
rename to htdocs/_data/devices/serranodsdd.yml
diff --git a/_data/devices/serranoltexx.yml b/htdocs/_data/devices/serranoltexx.yml
similarity index 100%
rename from _data/devices/serranoltexx.yml
rename to htdocs/_data/devices/serranoltexx.yml
diff --git a/_data/devices/shamu.yml b/htdocs/_data/devices/shamu.yml
similarity index 100%
rename from _data/devices/shamu.yml
rename to htdocs/_data/devices/shamu.yml
diff --git a/_data/devices/star2lte.yml b/htdocs/_data/devices/star2lte.yml
similarity index 100%
rename from _data/devices/star2lte.yml
rename to htdocs/_data/devices/star2lte.yml
diff --git a/_data/devices/starlte.yml b/htdocs/_data/devices/starlte.yml
similarity index 100%
rename from _data/devices/starlte.yml
rename to htdocs/_data/devices/starlte.yml
diff --git a/_data/devices/sumire.yml b/htdocs/_data/devices/sumire.yml
similarity index 100%
rename from _data/devices/sumire.yml
rename to htdocs/_data/devices/sumire.yml
diff --git a/_data/devices/surnia.yml b/htdocs/_data/devices/surnia.yml
similarity index 100%
rename from _data/devices/surnia.yml
rename to htdocs/_data/devices/surnia.yml
diff --git a/_data/devices/suzuran.yml b/htdocs/_data/devices/suzuran.yml
similarity index 100%
rename from _data/devices/suzuran.yml
rename to htdocs/_data/devices/suzuran.yml
diff --git a/_data/devices/t0lte.yml b/htdocs/_data/devices/t0lte.yml
similarity index 100%
rename from _data/devices/t0lte.yml
rename to htdocs/_data/devices/t0lte.yml
diff --git a/_data/devices/taimen.yml b/htdocs/_data/devices/taimen.yml
similarity index 100%
rename from _data/devices/taimen.yml
rename to htdocs/_data/devices/taimen.yml
diff --git a/_data/devices/tissot.yml b/htdocs/_data/devices/tissot.yml
similarity index 100%
rename from _data/devices/tissot.yml
rename to htdocs/_data/devices/tissot.yml
diff --git a/_data/devices/titan.yml b/htdocs/_data/devices/titan.yml
similarity index 100%
rename from _data/devices/titan.yml
rename to htdocs/_data/devices/titan.yml
diff --git a/_data/devices/treltexx.yml b/htdocs/_data/devices/treltexx.yml
similarity index 100%
rename from _data/devices/treltexx.yml
rename to htdocs/_data/devices/treltexx.yml
diff --git a/_data/devices/twolip.yml b/htdocs/_data/devices/twolip.yml
similarity index 100%
rename from _data/devices/twolip.yml
rename to htdocs/_data/devices/twolip.yml
diff --git a/_data/devices/victara.yml b/htdocs/_data/devices/victara.yml
similarity index 100%
rename from _data/devices/victara.yml
rename to htdocs/_data/devices/victara.yml
diff --git a/_data/devices/violet.yml b/htdocs/_data/devices/violet.yml
similarity index 100%
rename from _data/devices/violet.yml
rename to htdocs/_data/devices/violet.yml
diff --git a/_data/devices/voyager.yml b/htdocs/_data/devices/voyager.yml
similarity index 100%
rename from _data/devices/voyager.yml
rename to htdocs/_data/devices/voyager.yml
diff --git a/_data/devices/wayne.yml b/htdocs/_data/devices/wayne.yml
similarity index 100%
rename from _data/devices/wayne.yml
rename to htdocs/_data/devices/wayne.yml
diff --git a/_data/devices/whyred.yml b/htdocs/_data/devices/whyred.yml
similarity index 100%
rename from _data/devices/whyred.yml
rename to htdocs/_data/devices/whyred.yml
diff --git a/_data/devices/wt88047.yml b/htdocs/_data/devices/wt88047.yml
similarity index 100%
rename from _data/devices/wt88047.yml
rename to htdocs/_data/devices/wt88047.yml
diff --git a/_data/devices/x2.yml b/htdocs/_data/devices/x2.yml
similarity index 100%
rename from _data/devices/x2.yml
rename to htdocs/_data/devices/x2.yml
diff --git a/_data/devices/z2_plus.yml b/htdocs/_data/devices/z2_plus.yml
similarity index 100%
rename from _data/devices/z2_plus.yml
rename to htdocs/_data/devices/z2_plus.yml
diff --git a/_data/devices/z3c.yml b/htdocs/_data/devices/z3c.yml
similarity index 100%
rename from _data/devices/z3c.yml
rename to htdocs/_data/devices/z3c.yml
diff --git a/_data/devices/zangya.yml b/htdocs/_data/devices/zangya.yml
similarity index 100%
rename from _data/devices/zangya.yml
rename to htdocs/_data/devices/zangya.yml
diff --git a/_data/devices/zangyapro.yml b/htdocs/_data/devices/zangyapro.yml
similarity index 100%
rename from _data/devices/zangyapro.yml
rename to htdocs/_data/devices/zangyapro.yml
diff --git a/_data/devices/zenfone3.yml b/htdocs/_data/devices/zenfone3.yml
similarity index 100%
rename from _data/devices/zenfone3.yml
rename to htdocs/_data/devices/zenfone3.yml
diff --git a/_data/devices/zl1.yml b/htdocs/_data/devices/zl1.yml
similarity index 100%
rename from _data/devices/zl1.yml
rename to htdocs/_data/devices/zl1.yml
diff --git a/_data/documentation.yml b/htdocs/_data/documentation.yml
similarity index 100%
rename from _data/documentation.yml
rename to htdocs/_data/documentation.yml
diff --git a/_data/easy-installer.yml b/htdocs/_data/easy-installer.yml
similarity index 100%
rename from _data/easy-installer.yml
rename to htdocs/_data/easy-installer.yml
diff --git a/_data/languages.yml b/htdocs/_data/languages.yml
similarity index 100%
rename from _data/languages.yml
rename to htdocs/_data/languages.yml
diff --git a/_data/laptops/olimex.yml b/htdocs/_data/laptops/olimex.yml
similarity index 100%
rename from _data/laptops/olimex.yml
rename to htdocs/_data/laptops/olimex.yml
diff --git a/_data/laptops/pinebook.yml b/htdocs/_data/laptops/pinebook.yml
similarity index 100%
rename from _data/laptops/pinebook.yml
rename to htdocs/_data/laptops/pinebook.yml
diff --git a/_data/other-languages.yml b/htdocs/_data/other-languages.yml
similarity index 100%
rename from _data/other-languages.yml
rename to htdocs/_data/other-languages.yml
diff --git a/_data/troubleshooting.yml b/htdocs/_data/troubleshooting.yml
similarity index 100%
rename from _data/troubleshooting.yml
rename to htdocs/_data/troubleshooting.yml
diff --git a/_i18n/en.yml b/htdocs/_i18n/en.yml
similarity index 100%
rename from _i18n/en.yml
rename to htdocs/_i18n/en.yml
diff --git a/_i18n/en/devices_information_page.yml b/htdocs/_i18n/en/devices_information_page.yml
similarity index 100%
rename from _i18n/en/devices_information_page.yml
rename to htdocs/_i18n/en/devices_information_page.yml
diff --git a/_i18n/en/devices_install_page.yml b/htdocs/_i18n/en/devices_install_page.yml
similarity index 100%
rename from _i18n/en/devices_install_page.yml
rename to htdocs/_i18n/en/devices_install_page.yml
diff --git a/_i18n/en/devices_upgrade_page.yml b/htdocs/_i18n/en/devices_upgrade_page.yml
similarity index 100%
rename from _i18n/en/devices_upgrade_page.yml
rename to htdocs/_i18n/en/devices_upgrade_page.yml
diff --git a/_i18n/en/faq_page.yml b/htdocs/_i18n/en/faq_page.yml
similarity index 100%
rename from _i18n/en/faq_page.yml
rename to htdocs/_i18n/en/faq_page.yml
diff --git a/_i18n/en/how_tos_page.yml b/htdocs/_i18n/en/how_tos_page.yml
similarity index 100%
rename from _i18n/en/how_tos_page.yml
rename to htdocs/_i18n/en/how_tos_page.yml
diff --git a/_i18n/en/laptops_page.yml b/htdocs/_i18n/en/laptops_page.yml
similarity index 100%
rename from _i18n/en/laptops_page.yml
rename to htdocs/_i18n/en/laptops_page.yml
diff --git a/_i18n/en/site_global.yml b/htdocs/_i18n/en/site_global.yml
similarity index 100%
rename from _i18n/en/site_global.yml
rename to htdocs/_i18n/en/site_global.yml
diff --git a/_i18n/en/smartphone_selector_page.yml b/htdocs/_i18n/en/smartphone_selector_page.yml
similarity index 100%
rename from _i18n/en/smartphone_selector_page.yml
rename to htdocs/_i18n/en/smartphone_selector_page.yml
diff --git a/_i18n/en/welcome_page.yml b/htdocs/_i18n/en/welcome_page.yml
similarity index 100%
rename from _i18n/en/welcome_page.yml
rename to htdocs/_i18n/en/welcome_page.yml
diff --git a/_i18n/en/whats_e_page.yml b/htdocs/_i18n/en/whats_e_page.yml
similarity index 100%
rename from _i18n/en/whats_e_page.yml
rename to htdocs/_i18n/en/whats_e_page.yml
diff --git a/_i18n/fr.yml b/htdocs/_i18n/fr.yml
similarity index 100%
rename from _i18n/fr.yml
rename to htdocs/_i18n/fr.yml
diff --git a/_i18n/fr/devices_information_page.yml b/htdocs/_i18n/fr/devices_information_page.yml
similarity index 100%
rename from _i18n/fr/devices_information_page.yml
rename to htdocs/_i18n/fr/devices_information_page.yml
diff --git a/_i18n/fr/devices_install_page.yml b/htdocs/_i18n/fr/devices_install_page.yml
similarity index 100%
rename from _i18n/fr/devices_install_page.yml
rename to htdocs/_i18n/fr/devices_install_page.yml
diff --git a/_i18n/fr/devices_upgrade_page.yml b/htdocs/_i18n/fr/devices_upgrade_page.yml
similarity index 100%
rename from _i18n/fr/devices_upgrade_page.yml
rename to htdocs/_i18n/fr/devices_upgrade_page.yml
diff --git a/_i18n/fr/welcome_page.yml b/htdocs/_i18n/fr/welcome_page.yml
similarity index 100%
rename from _i18n/fr/welcome_page.yml
rename to htdocs/_i18n/fr/welcome_page.yml
diff --git a/_i18n/fr/whats_e_page.yml b/htdocs/_i18n/fr/whats_e_page.yml
similarity index 100%
rename from _i18n/fr/whats_e_page.yml
rename to htdocs/_i18n/fr/whats_e_page.yml
diff --git a/_includes/alerts/danger.html b/htdocs/_includes/alerts/danger.html
similarity index 100%
rename from _includes/alerts/danger.html
rename to htdocs/_includes/alerts/danger.html
diff --git a/_includes/alerts/success.html b/htdocs/_includes/alerts/success.html
similarity index 100%
rename from _includes/alerts/success.html
rename to htdocs/_includes/alerts/success.html
diff --git a/_includes/alerts/tip.html b/htdocs/_includes/alerts/tip.html
similarity index 100%
rename from _includes/alerts/tip.html
rename to htdocs/_includes/alerts/tip.html
diff --git a/_includes/alerts/warning.html b/htdocs/_includes/alerts/warning.html
similarity index 100%
rename from _includes/alerts/warning.html
rename to htdocs/_includes/alerts/warning.html
diff --git a/_includes/details.html b/htdocs/_includes/details.html
similarity index 100%
rename from _includes/details.html
rename to htdocs/_includes/details.html
diff --git a/_includes/device/device_info_disclaimer.html b/htdocs/_includes/device/device_info_disclaimer.html
similarity index 100%
rename from _includes/device/device_info_disclaimer.html
rename to htdocs/_includes/device/device_info_disclaimer.html
diff --git a/_includes/device/devices_search.html b/htdocs/_includes/device/devices_search.html
similarity index 100%
rename from _includes/device/devices_search.html
rename to htdocs/_includes/device/devices_search.html
diff --git a/_includes/device/laptop_table.html b/htdocs/_includes/device/laptop_table.html
similarity index 100%
rename from _includes/device/laptop_table.html
rename to htdocs/_includes/device/laptop_table.html
diff --git a/_includes/device/product_page.html b/htdocs/_includes/device/product_page.html
similarity index 100%
rename from _includes/device/product_page.html
rename to htdocs/_includes/device/product_page.html
diff --git a/_includes/device/selector_top.html b/htdocs/_includes/device/selector_top.html
similarity index 100%
rename from _includes/device/selector_top.html
rename to htdocs/_includes/device/selector_top.html
diff --git a/_includes/easy-installer-install-drivers.md b/htdocs/_includes/easy-installer-install-drivers.md
similarity index 100%
rename from _includes/easy-installer-install-drivers.md
rename to htdocs/_includes/easy-installer-install-drivers.md
diff --git a/_includes/head.html b/htdocs/_includes/head.html
similarity index 92%
rename from _includes/head.html
rename to htdocs/_includes/head.html
index c1aa3fbe1e54af331a4e15463a85c94c927f4779..af8824913228343fdebdef33f91ab495477ac33d 100644
--- a/_includes/head.html
+++ b/htdocs/_includes/head.html
@@ -12,4 +12,5 @@
{{ title }}
+
diff --git a/_includes/layouts/footer.html b/htdocs/_includes/layouts/footer.html
similarity index 100%
rename from _includes/layouts/footer.html
rename to htdocs/_includes/layouts/footer.html
diff --git a/_includes/layouts/header.html b/htdocs/_includes/layouts/header.html
similarity index 100%
rename from _includes/layouts/header.html
rename to htdocs/_includes/layouts/header.html
diff --git a/_includes/licence.html b/htdocs/_includes/licence.html
similarity index 100%
rename from _includes/licence.html
rename to htdocs/_includes/licence.html
diff --git a/_includes/scripts.html b/htdocs/_includes/scripts.html
similarity index 100%
rename from _includes/scripts.html
rename to htdocs/_includes/scripts.html
diff --git a/_includes/set_title_var.md b/htdocs/_includes/set_title_var.md
similarity index 100%
rename from _includes/set_title_var.md
rename to htdocs/_includes/set_title_var.md
diff --git a/_includes/snippets/battery.html b/htdocs/_includes/snippets/battery.html
similarity index 100%
rename from _includes/snippets/battery.html
rename to htdocs/_includes/snippets/battery.html
diff --git a/_includes/snippets/easy_installer.html b/htdocs/_includes/snippets/easy_installer.html
similarity index 100%
rename from _includes/snippets/easy_installer.html
rename to htdocs/_includes/snippets/easy_installer.html
diff --git a/_includes/snippets/peripherals.html b/htdocs/_includes/snippets/peripherals.html
similarity index 100%
rename from _includes/snippets/peripherals.html
rename to htdocs/_includes/snippets/peripherals.html
diff --git a/_includes/snippets/release.html b/htdocs/_includes/snippets/release.html
similarity index 100%
rename from _includes/snippets/release.html
rename to htdocs/_includes/snippets/release.html
diff --git a/_includes/snippets/video.html b/htdocs/_includes/snippets/video.html
similarity index 100%
rename from _includes/snippets/video.html
rename to htdocs/_includes/snippets/video.html
diff --git a/_includes/templates/about_topics/build.md b/htdocs/_includes/templates/about_topics/build.md
similarity index 100%
rename from _includes/templates/about_topics/build.md
rename to htdocs/_includes/templates/about_topics/build.md
diff --git a/_includes/templates/about_topics/have_found_a_bug.md b/htdocs/_includes/templates/about_topics/have_found_a_bug.md
similarity index 100%
rename from _includes/templates/about_topics/have_found_a_bug.md
rename to htdocs/_includes/templates/about_topics/have_found_a_bug.md
diff --git a/_includes/templates/about_topics/install.md b/htdocs/_includes/templates/about_topics/install.md
similarity index 100%
rename from _includes/templates/about_topics/install.md
rename to htdocs/_includes/templates/about_topics/install.md
diff --git a/_includes/templates/about_topics/minimal_os.md b/htdocs/_includes/templates/about_topics/minimal_os.md
similarity index 100%
rename from _includes/templates/about_topics/minimal_os.md
rename to htdocs/_includes/templates/about_topics/minimal_os.md
diff --git a/_includes/templates/about_topics/model_not_supported.md b/htdocs/_includes/templates/about_topics/model_not_supported.md
similarity index 100%
rename from _includes/templates/about_topics/model_not_supported.md
rename to htdocs/_includes/templates/about_topics/model_not_supported.md
diff --git a/_includes/templates/about_topics/stock_revert.md b/htdocs/_includes/templates/about_topics/stock_revert.md
similarity index 100%
rename from _includes/templates/about_topics/stock_revert.md
rename to htdocs/_includes/templates/about_topics/stock_revert.md
diff --git a/_includes/templates/about_topics/upgrade.md b/htdocs/_includes/templates/about_topics/upgrade.md
similarity index 100%
rename from _includes/templates/about_topics/upgrade.md
rename to htdocs/_includes/templates/about_topics/upgrade.md
diff --git a/_includes/templates/about_topics/whats_not_working.md b/htdocs/_includes/templates/about_topics/whats_not_working.md
similarity index 100%
rename from _includes/templates/about_topics/whats_not_working.md
rename to htdocs/_includes/templates/about_topics/whats_not_working.md
diff --git a/_includes/templates/additional_downloads_GS290.md b/htdocs/_includes/templates/additional_downloads_GS290.md
similarity index 100%
rename from _includes/templates/additional_downloads_GS290.md
rename to htdocs/_includes/templates/additional_downloads_GS290.md
diff --git a/_includes/templates/additional_downloads_cheeseburger.md b/htdocs/_includes/templates/additional_downloads_cheeseburger.md
similarity index 100%
rename from _includes/templates/additional_downloads_cheeseburger.md
rename to htdocs/_includes/templates/additional_downloads_cheeseburger.md
diff --git a/_includes/templates/additional_downloads_wt88047.md b/htdocs/_includes/templates/additional_downloads_wt88047.md
similarity index 100%
rename from _includes/templates/additional_downloads_wt88047.md
rename to htdocs/_includes/templates/additional_downloads_wt88047.md
diff --git a/_includes/templates/additional_downloads_xiaomi.md b/htdocs/_includes/templates/additional_downloads_xiaomi.md
similarity index 100%
rename from _includes/templates/additional_downloads_xiaomi.md
rename to htdocs/_includes/templates/additional_downloads_xiaomi.md
diff --git a/_includes/templates/before_e_install_ab_copy_partitions.md b/htdocs/_includes/templates/before_e_install_ab_copy_partitions.md
similarity index 100%
rename from _includes/templates/before_e_install_ab_copy_partitions.md
rename to htdocs/_includes/templates/before_e_install_ab_copy_partitions.md
diff --git a/_includes/templates/before_e_install_wt88047.md b/htdocs/_includes/templates/before_e_install_wt88047.md
similarity index 100%
rename from _includes/templates/before_e_install_wt88047.md
rename to htdocs/_includes/templates/before_e_install_wt88047.md
diff --git a/_includes/templates/before_install.md b/htdocs/_includes/templates/before_install.md
similarity index 100%
rename from _includes/templates/before_install.md
rename to htdocs/_includes/templates/before_install.md
diff --git a/_includes/templates/before_install_2e.md b/htdocs/_includes/templates/before_install_2e.md
similarity index 100%
rename from _includes/templates/before_install_2e.md
rename to htdocs/_includes/templates/before_install_2e.md
diff --git a/_includes/templates/before_install_FP3.md b/htdocs/_includes/templates/before_install_FP3.md
similarity index 100%
rename from _includes/templates/before_install_FP3.md
rename to htdocs/_includes/templates/before_install_FP3.md
diff --git a/_includes/templates/before_install_GS290.md b/htdocs/_includes/templates/before_install_GS290.md
similarity index 100%
rename from _includes/templates/before_install_GS290.md
rename to htdocs/_includes/templates/before_install_GS290.md
diff --git a/_includes/templates/before_install_ensure_latest_firmware.md b/htdocs/_includes/templates/before_install_ensure_latest_firmware.md
similarity index 100%
rename from _includes/templates/before_install_ensure_latest_firmware.md
rename to htdocs/_includes/templates/before_install_ensure_latest_firmware.md
diff --git a/_includes/templates/before_install_gts4lv.md b/htdocs/_includes/templates/before_install_gts4lv.md
similarity index 100%
rename from _includes/templates/before_install_gts4lv.md
rename to htdocs/_includes/templates/before_install_gts4lv.md
diff --git a/_includes/templates/before_install_nash.md b/htdocs/_includes/templates/before_install_nash.md
similarity index 100%
rename from _includes/templates/before_install_nash.md
rename to htdocs/_includes/templates/before_install_nash.md
diff --git a/_includes/templates/before_install_needs_specific_android_fw.md b/htdocs/_includes/templates/before_install_needs_specific_android_fw.md
similarity index 100%
rename from _includes/templates/before_install_needs_specific_android_fw.md
rename to htdocs/_includes/templates/before_install_needs_specific_android_fw.md
diff --git a/_includes/templates/before_install_pme.md b/htdocs/_includes/templates/before_install_pme.md
similarity index 100%
rename from _includes/templates/before_install_pme.md
rename to htdocs/_includes/templates/before_install_pme.md
diff --git a/_includes/templates/before_install_s3ve3g.md b/htdocs/_includes/templates/before_install_s3ve3g.md
similarity index 100%
rename from _includes/templates/before_install_s3ve3g.md
rename to htdocs/_includes/templates/before_install_s3ve3g.md
diff --git a/_includes/templates/before_install_shinano.md b/htdocs/_includes/templates/before_install_shinano.md
similarity index 100%
rename from _includes/templates/before_install_shinano.md
rename to htdocs/_includes/templates/before_install_shinano.md
diff --git a/_includes/templates/before_install_wt88047.md b/htdocs/_includes/templates/before_install_wt88047.md
similarity index 100%
rename from _includes/templates/before_install_wt88047.md
rename to htdocs/_includes/templates/before_install_wt88047.md
diff --git a/_includes/templates/copy_partitions.md b/htdocs/_includes/templates/copy_partitions.md
similarity index 100%
rename from _includes/templates/copy_partitions.md
rename to htdocs/_includes/templates/copy_partitions.md
diff --git a/_includes/templates/details_topics/architecture.md b/htdocs/_includes/templates/details_topics/architecture.md
similarity index 100%
rename from _includes/templates/details_topics/architecture.md
rename to htdocs/_includes/templates/details_topics/architecture.md
diff --git a/_includes/templates/details_topics/battery.md b/htdocs/_includes/templates/details_topics/battery.md
similarity index 100%
rename from _includes/templates/details_topics/battery.md
rename to htdocs/_includes/templates/details_topics/battery.md
diff --git a/_includes/templates/details_topics/bluetooth.md b/htdocs/_includes/templates/details_topics/bluetooth.md
similarity index 100%
rename from _includes/templates/details_topics/bluetooth.md
rename to htdocs/_includes/templates/details_topics/bluetooth.md
diff --git a/_includes/templates/details_topics/boot_modes.md b/htdocs/_includes/templates/details_topics/boot_modes.md
similarity index 100%
rename from _includes/templates/details_topics/boot_modes.md
rename to htdocs/_includes/templates/details_topics/boot_modes.md
diff --git a/_includes/templates/details_topics/cameras.md b/htdocs/_includes/templates/details_topics/cameras.md
similarity index 100%
rename from _includes/templates/details_topics/cameras.md
rename to htdocs/_includes/templates/details_topics/cameras.md
diff --git a/_includes/templates/details_topics/cpu.md b/htdocs/_includes/templates/details_topics/cpu.md
similarity index 100%
rename from _includes/templates/details_topics/cpu.md
rename to htdocs/_includes/templates/details_topics/cpu.md
diff --git a/_includes/templates/details_topics/device_tree.md b/htdocs/_includes/templates/details_topics/device_tree.md
similarity index 100%
rename from _includes/templates/details_topics/device_tree.md
rename to htdocs/_includes/templates/details_topics/device_tree.md
diff --git a/_includes/templates/details_topics/dimensions.md b/htdocs/_includes/templates/details_topics/dimensions.md
similarity index 100%
rename from _includes/templates/details_topics/dimensions.md
rename to htdocs/_includes/templates/details_topics/dimensions.md
diff --git a/_includes/templates/details_topics/gpu.md b/htdocs/_includes/templates/details_topics/gpu.md
similarity index 100%
rename from _includes/templates/details_topics/gpu.md
rename to htdocs/_includes/templates/details_topics/gpu.md
diff --git a/_includes/templates/details_topics/nand.md b/htdocs/_includes/templates/details_topics/nand.md
similarity index 100%
rename from _includes/templates/details_topics/nand.md
rename to htdocs/_includes/templates/details_topics/nand.md
diff --git a/_includes/templates/details_topics/network.md b/htdocs/_includes/templates/details_topics/network.md
similarity index 100%
rename from _includes/templates/details_topics/network.md
rename to htdocs/_includes/templates/details_topics/network.md
diff --git a/_includes/templates/details_topics/peripherals.md b/htdocs/_includes/templates/details_topics/peripherals.md
similarity index 100%
rename from _includes/templates/details_topics/peripherals.md
rename to htdocs/_includes/templates/details_topics/peripherals.md
diff --git a/_includes/templates/details_topics/ram.md b/htdocs/_includes/templates/details_topics/ram.md
similarity index 100%
rename from _includes/templates/details_topics/ram.md
rename to htdocs/_includes/templates/details_topics/ram.md
diff --git a/_includes/templates/details_topics/release.md b/htdocs/_includes/templates/details_topics/release.md
similarity index 100%
rename from _includes/templates/details_topics/release.md
rename to htdocs/_includes/templates/details_topics/release.md
diff --git a/_includes/templates/details_topics/screen.md b/htdocs/_includes/templates/details_topics/screen.md
similarity index 100%
rename from _includes/templates/details_topics/screen.md
rename to htdocs/_includes/templates/details_topics/screen.md
diff --git a/_includes/templates/details_topics/sd_card.md b/htdocs/_includes/templates/details_topics/sd_card.md
similarity index 100%
rename from _includes/templates/details_topics/sd_card.md
rename to htdocs/_includes/templates/details_topics/sd_card.md
diff --git a/_includes/templates/details_topics/soc.md b/htdocs/_includes/templates/details_topics/soc.md
similarity index 100%
rename from _includes/templates/details_topics/soc.md
rename to htdocs/_includes/templates/details_topics/soc.md
diff --git a/_includes/templates/details_topics/storage.md b/htdocs/_includes/templates/details_topics/storage.md
similarity index 100%
rename from _includes/templates/details_topics/storage.md
rename to htdocs/_includes/templates/details_topics/storage.md
diff --git a/_includes/templates/details_topics/wi_fi.md b/htdocs/_includes/templates/details_topics/wi_fi.md
similarity index 100%
rename from _includes/templates/details_topics/wi_fi.md
rename to htdocs/_includes/templates/details_topics/wi_fi.md
diff --git a/_includes/templates/device_downloads.md b/htdocs/_includes/templates/device_downloads.md
similarity index 100%
rename from _includes/templates/device_downloads.md
rename to htdocs/_includes/templates/device_downloads.md
diff --git a/_includes/templates/device_install.md b/htdocs/_includes/templates/device_install.md
similarity index 100%
rename from _includes/templates/device_install.md
rename to htdocs/_includes/templates/device_install.md
diff --git a/_includes/templates/device_upgrade.md b/htdocs/_includes/templates/device_upgrade.md
similarity index 100%
rename from _includes/templates/device_upgrade.md
rename to htdocs/_includes/templates/device_upgrade.md
diff --git a/_includes/templates/help.md b/htdocs/_includes/templates/help.md
similarity index 100%
rename from _includes/templates/help.md
rename to htdocs/_includes/templates/help.md
diff --git a/_includes/templates/install_e.md b/htdocs/_includes/templates/install_e.md
similarity index 100%
rename from _includes/templates/install_e.md
rename to htdocs/_includes/templates/install_e.md
diff --git a/_includes/templates/install_e_2e.md b/htdocs/_includes/templates/install_e_2e.md
similarity index 100%
rename from _includes/templates/install_e_2e.md
rename to htdocs/_includes/templates/install_e_2e.md
diff --git a/_includes/templates/install_e_FP3.md b/htdocs/_includes/templates/install_e_FP3.md
similarity index 100%
rename from _includes/templates/install_e_FP3.md
rename to htdocs/_includes/templates/install_e_FP3.md
diff --git a/_includes/templates/install_e_GS290.md b/htdocs/_includes/templates/install_e_GS290.md
similarity index 100%
rename from _includes/templates/install_e_GS290.md
rename to htdocs/_includes/templates/install_e_GS290.md
diff --git a/_includes/templates/install_e_olimex.md b/htdocs/_includes/templates/install_e_olimex.md
similarity index 100%
rename from _includes/templates/install_e_olimex.md
rename to htdocs/_includes/templates/install_e_olimex.md
diff --git a/_includes/templates/install_e_pinebook.md b/htdocs/_includes/templates/install_e_pinebook.md
similarity index 100%
rename from _includes/templates/install_e_pinebook.md
rename to htdocs/_includes/templates/install_e_pinebook.md
diff --git a/_includes/templates/laptop_build.md b/htdocs/_includes/templates/laptop_build.md
similarity index 100%
rename from _includes/templates/laptop_build.md
rename to htdocs/_includes/templates/laptop_build.md
diff --git a/_includes/templates/laptop_install.md b/htdocs/_includes/templates/laptop_install.md
similarity index 100%
rename from _includes/templates/laptop_install.md
rename to htdocs/_includes/templates/laptop_install.md
diff --git a/_includes/templates/licence_device.md b/htdocs/_includes/templates/licence_device.md
similarity index 100%
rename from _includes/templates/licence_device.md
rename to htdocs/_includes/templates/licence_device.md
diff --git a/_includes/templates/oem_unlock.md b/htdocs/_includes/templates/oem_unlock.md
similarity index 100%
rename from _includes/templates/oem_unlock.md
rename to htdocs/_includes/templates/oem_unlock.md
diff --git a/_includes/templates/oem_unlock_GS290.md b/htdocs/_includes/templates/oem_unlock_GS290.md
similarity index 100%
rename from _includes/templates/oem_unlock_GS290.md
rename to htdocs/_includes/templates/oem_unlock_GS290.md
diff --git a/_includes/templates/oem_unlock_generic.md b/htdocs/_includes/templates/oem_unlock_generic.md
similarity index 100%
rename from _includes/templates/oem_unlock_generic.md
rename to htdocs/_includes/templates/oem_unlock_generic.md
diff --git a/_includes/templates/product_info_by_device.md b/htdocs/_includes/templates/product_info_by_device.md
similarity index 100%
rename from _includes/templates/product_info_by_device.md
rename to htdocs/_includes/templates/product_info_by_device.md
diff --git a/_includes/templates/recovery_install.md b/htdocs/_includes/templates/recovery_install.md
similarity index 100%
rename from _includes/templates/recovery_install.md
rename to htdocs/_includes/templates/recovery_install.md
diff --git a/_includes/templates/recovery_install_dd.md b/htdocs/_includes/templates/recovery_install_dd.md
similarity index 100%
rename from _includes/templates/recovery_install_dd.md
rename to htdocs/_includes/templates/recovery_install_dd.md
diff --git a/_includes/templates/recovery_install_fastboot_ab.md b/htdocs/_includes/templates/recovery_install_fastboot_ab.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_ab.md
rename to htdocs/_includes/templates/recovery_install_fastboot_ab.md
diff --git a/_includes/templates/recovery_install_fastboot_custom.md b/htdocs/_includes/templates/recovery_install_fastboot_custom.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_custom.md
rename to htdocs/_includes/templates/recovery_install_fastboot_custom.md
diff --git a/_includes/templates/recovery_install_fastboot_generic.md b/htdocs/_includes/templates/recovery_install_fastboot_generic.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_generic.md
rename to htdocs/_includes/templates/recovery_install_fastboot_generic.md
diff --git a/_includes/templates/recovery_install_fastboot_htc.md b/htdocs/_includes/templates/recovery_install_fastboot_htc.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_htc.md
rename to htdocs/_includes/templates/recovery_install_fastboot_htc.md
diff --git a/_includes/templates/recovery_install_fastboot_huawei.md b/htdocs/_includes/templates/recovery_install_fastboot_huawei.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_huawei.md
rename to htdocs/_includes/templates/recovery_install_fastboot_huawei.md
diff --git a/_includes/templates/recovery_install_fastboot_lenovo.md b/htdocs/_includes/templates/recovery_install_fastboot_lenovo.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_lenovo.md
rename to htdocs/_includes/templates/recovery_install_fastboot_lenovo.md
diff --git a/_includes/templates/recovery_install_fastboot_lg.md b/htdocs/_includes/templates/recovery_install_fastboot_lg.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_lg.md
rename to htdocs/_includes/templates/recovery_install_fastboot_lg.md
diff --git a/_includes/templates/recovery_install_fastboot_mata.md b/htdocs/_includes/templates/recovery_install_fastboot_mata.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_mata.md
rename to htdocs/_includes/templates/recovery_install_fastboot_mata.md
diff --git a/_includes/templates/recovery_install_fastboot_motorola.md b/htdocs/_includes/templates/recovery_install_fastboot_motorola.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_motorola.md
rename to htdocs/_includes/templates/recovery_install_fastboot_motorola.md
diff --git a/_includes/templates/recovery_install_fastboot_nexus.md b/htdocs/_includes/templates/recovery_install_fastboot_nexus.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_nexus.md
rename to htdocs/_includes/templates/recovery_install_fastboot_nexus.md
diff --git a/_includes/templates/recovery_install_fastboot_oppo.md b/htdocs/_includes/templates/recovery_install_fastboot_oppo.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_oppo.md
rename to htdocs/_includes/templates/recovery_install_fastboot_oppo.md
diff --git a/_includes/templates/recovery_install_fastboot_realme.md b/htdocs/_includes/templates/recovery_install_fastboot_realme.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_realme.md
rename to htdocs/_includes/templates/recovery_install_fastboot_realme.md
diff --git a/_includes/templates/recovery_install_fastboot_sony.md b/htdocs/_includes/templates/recovery_install_fastboot_sony.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_sony.md
rename to htdocs/_includes/templates/recovery_install_fastboot_sony.md
diff --git a/_includes/templates/recovery_install_fastboot_unlocked.md b/htdocs/_includes/templates/recovery_install_fastboot_unlocked.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_unlocked.md
rename to htdocs/_includes/templates/recovery_install_fastboot_unlocked.md
diff --git a/_includes/templates/recovery_install_fastboot_xiaomi.md b/htdocs/_includes/templates/recovery_install_fastboot_xiaomi.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_xiaomi.md
rename to htdocs/_includes/templates/recovery_install_fastboot_xiaomi.md
diff --git a/_includes/templates/recovery_install_fastboot_zenfone.md b/htdocs/_includes/templates/recovery_install_fastboot_zenfone.md
similarity index 100%
rename from _includes/templates/recovery_install_fastboot_zenfone.md
rename to htdocs/_includes/templates/recovery_install_fastboot_zenfone.md
diff --git a/_includes/templates/recovery_install_heimdall.md b/htdocs/_includes/templates/recovery_install_heimdall.md
similarity index 100%
rename from _includes/templates/recovery_install_heimdall.md
rename to htdocs/_includes/templates/recovery_install_heimdall.md
diff --git a/_includes/templates/recovery_install_odin.md b/htdocs/_includes/templates/recovery_install_odin.md
similarity index 100%
rename from _includes/templates/recovery_install_odin.md
rename to htdocs/_includes/templates/recovery_install_odin.md
diff --git a/_includes/templates/requirements.md b/htdocs/_includes/templates/requirements.md
similarity index 100%
rename from _includes/templates/requirements.md
rename to htdocs/_includes/templates/requirements.md
diff --git a/_includes/templates/sideload.md b/htdocs/_includes/templates/sideload.md
similarity index 100%
rename from _includes/templates/sideload.md
rename to htdocs/_includes/templates/sideload.md
diff --git a/_includes/templates/suggestions.md b/htdocs/_includes/templates/suggestions.md
similarity index 100%
rename from _includes/templates/suggestions.md
rename to htdocs/_includes/templates/suggestions.md
diff --git a/_includes/templates/unlock_bootloader.md b/htdocs/_includes/templates/unlock_bootloader.md
similarity index 100%
rename from _includes/templates/unlock_bootloader.md
rename to htdocs/_includes/templates/unlock_bootloader.md
diff --git a/_includes/toc.html b/htdocs/_includes/toc.html
similarity index 100%
rename from _includes/toc.html
rename to htdocs/_includes/toc.html
diff --git a/_layouts/default.html b/htdocs/_layouts/default.html
similarity index 100%
rename from _layouts/default.html
rename to htdocs/_layouts/default.html
diff --git a/_layouts/page.html b/htdocs/_layouts/page.html
similarity index 100%
rename from _layouts/page.html
rename to htdocs/_layouts/page.html
diff --git a/_layouts/selector.html b/htdocs/_layouts/selector.html
similarity index 100%
rename from _layouts/selector.html
rename to htdocs/_layouts/selector.html
diff --git a/_plugins/hide-parentheses.rb b/htdocs/_plugins/hide-parentheses.rb
similarity index 100%
rename from _plugins/hide-parentheses.rb
rename to htdocs/_plugins/hide-parentheses.rb
diff --git a/_plugins/i18n-merger.rb b/htdocs/_plugins/i18n-merger.rb
similarity index 100%
rename from _plugins/i18n-merger.rb
rename to htdocs/_plugins/i18n-merger.rb
diff --git a/_sass/minima/_base.scss b/htdocs/_sass/minima/_base.scss
similarity index 100%
rename from _sass/minima/_base.scss
rename to htdocs/_sass/minima/_base.scss
diff --git a/_sass/minima/_layout.scss b/htdocs/_sass/minima/_layout.scss
similarity index 100%
rename from _sass/minima/_layout.scss
rename to htdocs/_sass/minima/_layout.scss
diff --git a/_sass/minima/_syntax-highlighting.scss b/htdocs/_sass/minima/_syntax-highlighting.scss
similarity index 100%
rename from _sass/minima/_syntax-highlighting.scss
rename to htdocs/_sass/minima/_syntax-highlighting.scss
diff --git a/_sass/minima/custom-styles.scss b/htdocs/_sass/minima/custom-styles.scss
similarity index 100%
rename from _sass/minima/custom-styles.scss
rename to htdocs/_sass/minima/custom-styles.scss
diff --git a/_sass/minima/custom-variables.scss b/htdocs/_sass/minima/custom-variables.scss
similarity index 100%
rename from _sass/minima/custom-variables.scss
rename to htdocs/_sass/minima/custom-variables.scss
diff --git a/_sass/minima/initialize.scss b/htdocs/_sass/minima/initialize.scss
similarity index 100%
rename from _sass/minima/initialize.scss
rename to htdocs/_sass/minima/initialize.scss
diff --git a/_sass/minima/skins/classic.scss b/htdocs/_sass/minima/skins/classic.scss
similarity index 100%
rename from _sass/minima/skins/classic.scss
rename to htdocs/_sass/minima/skins/classic.scss
diff --git a/_sass/minima/skins/dark.scss b/htdocs/_sass/minima/skins/dark.scss
similarity index 100%
rename from _sass/minima/skins/dark.scss
rename to htdocs/_sass/minima/skins/dark.scss
diff --git a/_sass/minima/skins/solarized-dark.scss b/htdocs/_sass/minima/skins/solarized-dark.scss
similarity index 100%
rename from _sass/minima/skins/solarized-dark.scss
rename to htdocs/_sass/minima/skins/solarized-dark.scss
diff --git a/_sass/minima/skins/solarized.scss b/htdocs/_sass/minima/skins/solarized.scss
similarity index 100%
rename from _sass/minima/skins/solarized.scss
rename to htdocs/_sass/minima/skins/solarized.scss
diff --git a/about.md b/htdocs/about.md
similarity index 100%
rename from about.md
rename to htdocs/about.md
diff --git a/assets/css/bootstrap.min.css b/htdocs/assets/css/bootstrap.min.css
similarity index 100%
rename from assets/css/bootstrap.min.css
rename to htdocs/assets/css/bootstrap.min.css
diff --git a/assets/css/bootstrap.min.css.map b/htdocs/assets/css/bootstrap.min.css.map
similarity index 100%
rename from assets/css/bootstrap.min.css.map
rename to htdocs/assets/css/bootstrap.min.css.map
diff --git a/assets/css/devices-page.css b/htdocs/assets/css/devices-page.css
similarity index 100%
rename from assets/css/devices-page.css
rename to htdocs/assets/css/devices-page.css
diff --git a/assets/css/font-awesome.min.css b/htdocs/assets/css/font-awesome.min.css
similarity index 100%
rename from assets/css/font-awesome.min.css
rename to htdocs/assets/css/font-awesome.min.css
diff --git a/assets/css/style.scss b/htdocs/assets/css/style.scss
similarity index 100%
rename from assets/css/style.scss
rename to htdocs/assets/css/style.scss
diff --git a/assets/fonts/FontAwesome.otf b/htdocs/assets/fonts/FontAwesome.otf
similarity index 100%
rename from assets/fonts/FontAwesome.otf
rename to htdocs/assets/fonts/FontAwesome.otf
diff --git a/assets/fonts/century-gothic/CenturyGothic.ttf b/htdocs/assets/fonts/century-gothic/CenturyGothic.ttf
similarity index 100%
rename from assets/fonts/century-gothic/CenturyGothic.ttf
rename to htdocs/assets/fonts/century-gothic/CenturyGothic.ttf
diff --git a/assets/fonts/century-gothic/GOTHICB.TTF b/htdocs/assets/fonts/century-gothic/GOTHICB.TTF
similarity index 100%
rename from assets/fonts/century-gothic/GOTHICB.TTF
rename to htdocs/assets/fonts/century-gothic/GOTHICB.TTF
diff --git a/assets/fonts/droid-serif/Apache License.txt b/htdocs/assets/fonts/droid-serif/Apache License.txt
similarity index 100%
rename from assets/fonts/droid-serif/Apache License.txt
rename to htdocs/assets/fonts/droid-serif/Apache License.txt
diff --git a/assets/fonts/droid-serif/DroidSerif-Bold.ttf b/htdocs/assets/fonts/droid-serif/DroidSerif-Bold.ttf
similarity index 100%
rename from assets/fonts/droid-serif/DroidSerif-Bold.ttf
rename to htdocs/assets/fonts/droid-serif/DroidSerif-Bold.ttf
diff --git a/assets/fonts/droid-serif/DroidSerif-BoldItalic.ttf b/htdocs/assets/fonts/droid-serif/DroidSerif-BoldItalic.ttf
similarity index 100%
rename from assets/fonts/droid-serif/DroidSerif-BoldItalic.ttf
rename to htdocs/assets/fonts/droid-serif/DroidSerif-BoldItalic.ttf
diff --git a/assets/fonts/droid-serif/DroidSerif-Italic.ttf b/htdocs/assets/fonts/droid-serif/DroidSerif-Italic.ttf
similarity index 100%
rename from assets/fonts/droid-serif/DroidSerif-Italic.ttf
rename to htdocs/assets/fonts/droid-serif/DroidSerif-Italic.ttf
diff --git a/assets/fonts/droid-serif/DroidSerif-Regular.ttf b/htdocs/assets/fonts/droid-serif/DroidSerif-Regular.ttf
similarity index 100%
rename from assets/fonts/droid-serif/DroidSerif-Regular.ttf
rename to htdocs/assets/fonts/droid-serif/DroidSerif-Regular.ttf
diff --git a/assets/fonts/fontawesome-webfont.eot b/htdocs/assets/fonts/fontawesome-webfont.eot
similarity index 100%
rename from assets/fonts/fontawesome-webfont.eot
rename to htdocs/assets/fonts/fontawesome-webfont.eot
diff --git a/assets/fonts/fontawesome-webfont.svg b/htdocs/assets/fonts/fontawesome-webfont.svg
similarity index 100%
rename from assets/fonts/fontawesome-webfont.svg
rename to htdocs/assets/fonts/fontawesome-webfont.svg
diff --git a/assets/fonts/fontawesome-webfont.ttf b/htdocs/assets/fonts/fontawesome-webfont.ttf
similarity index 100%
rename from assets/fonts/fontawesome-webfont.ttf
rename to htdocs/assets/fonts/fontawesome-webfont.ttf
diff --git a/assets/fonts/fontawesome-webfont.woff b/htdocs/assets/fonts/fontawesome-webfont.woff
similarity index 100%
rename from assets/fonts/fontawesome-webfont.woff
rename to htdocs/assets/fonts/fontawesome-webfont.woff
diff --git a/assets/fonts/fontawesome-webfont.woff2 b/htdocs/assets/fonts/fontawesome-webfont.woff2
similarity index 100%
rename from assets/fonts/fontawesome-webfont.woff2
rename to htdocs/assets/fonts/fontawesome-webfont.woff2
diff --git a/assets/fonts/ufonts.com_copperplate-gothic-regular.ttf b/htdocs/assets/fonts/ufonts.com_copperplate-gothic-regular.ttf
similarity index 100%
rename from assets/fonts/ufonts.com_copperplate-gothic-regular.ttf
rename to htdocs/assets/fonts/ufonts.com_copperplate-gothic-regular.ttf
diff --git a/assets/js/bootstrap.min.js b/htdocs/assets/js/bootstrap.min.js
similarity index 100%
rename from assets/js/bootstrap.min.js
rename to htdocs/assets/js/bootstrap.min.js
diff --git a/assets/js/code.js b/htdocs/assets/js/code.js
similarity index 100%
rename from assets/js/code.js
rename to htdocs/assets/js/code.js
diff --git a/assets/js/jquery-3.5.1.min.js b/htdocs/assets/js/jquery-3.5.1.min.js
similarity index 100%
rename from assets/js/jquery-3.5.1.min.js
rename to htdocs/assets/js/jquery-3.5.1.min.js
diff --git a/assets/js/popper.min.js b/htdocs/assets/js/popper.min.js
similarity index 100%
rename from assets/js/popper.min.js
rename to htdocs/assets/js/popper.min.js
diff --git a/favicon.ico b/htdocs/favicon.ico
similarity index 100%
rename from favicon.ico
rename to htdocs/favicon.ico
diff --git a/images/Account_delete.png b/htdocs/images/Account_delete.png
similarity index 100%
rename from images/Account_delete.png
rename to htdocs/images/Account_delete.png
diff --git a/images/Allow_USB_Debugging.png b/htdocs/images/Allow_USB_Debugging.png
similarity index 100%
rename from images/Allow_USB_Debugging.png
rename to htdocs/images/Allow_USB_Debugging.png
diff --git a/images/Covid_1.png b/htdocs/images/Covid_1.png
similarity index 100%
rename from images/Covid_1.png
rename to htdocs/images/Covid_1.png
diff --git a/images/Covid_2.png b/htdocs/images/Covid_2.png
similarity index 100%
rename from images/Covid_2.png
rename to htdocs/images/Covid_2.png
diff --git a/images/Covid_3.png b/htdocs/images/Covid_3.png
similarity index 100%
rename from images/Covid_3.png
rename to htdocs/images/Covid_3.png
diff --git a/images/Covid_7.png b/htdocs/images/Covid_7.png
similarity index 100%
rename from images/Covid_7.png
rename to htdocs/images/Covid_7.png
diff --git a/images/DxNd6n_WwAAA4Bn.jpg b/htdocs/images/DxNd6n_WwAAA4Bn.jpg
similarity index 100%
rename from images/DxNd6n_WwAAA4Bn.jpg
rename to htdocs/images/DxNd6n_WwAAA4Bn.jpg
diff --git a/images/Easy-installer-rsaFingerprint.png b/htdocs/images/Easy-installer-rsaFingerprint.png
similarity index 100%
rename from images/Easy-installer-rsaFingerprint.png
rename to htdocs/images/Easy-installer-rsaFingerprint.png
diff --git a/images/Screenshot_20200415-191315_Settings.png b/htdocs/images/Screenshot_20200415-191315_Settings.png
similarity index 100%
rename from images/Screenshot_20200415-191315_Settings.png
rename to htdocs/images/Screenshot_20200415-191315_Settings.png
diff --git a/images/Screenshot_20200415-191324_Settings.png b/htdocs/images/Screenshot_20200415-191324_Settings.png
similarity index 100%
rename from images/Screenshot_20200415-191324_Settings.png
rename to htdocs/images/Screenshot_20200415-191324_Settings.png
diff --git a/images/Screenshot_20200415-191341_Settings.png b/htdocs/images/Screenshot_20200415-191341_Settings.png
similarity index 100%
rename from images/Screenshot_20200415-191341_Settings.png
rename to htdocs/images/Screenshot_20200415-191341_Settings.png
diff --git a/images/Screenshot_20200415-191358_Settings.png b/htdocs/images/Screenshot_20200415-191358_Settings.png
similarity index 100%
rename from images/Screenshot_20200415-191358_Settings.png
rename to htdocs/images/Screenshot_20200415-191358_Settings.png
diff --git a/images/Screenshot_20200415-191410_Settings.png b/htdocs/images/Screenshot_20200415-191410_Settings.png
similarity index 100%
rename from images/Screenshot_20200415-191410_Settings.png
rename to htdocs/images/Screenshot_20200415-191410_Settings.png
diff --git a/images/Screenshot_20210420-092957_Bliss_Launcher.png b/htdocs/images/Screenshot_20210420-092957_Bliss_Launcher.png
similarity index 100%
rename from images/Screenshot_20210420-092957_Bliss_Launcher.png
rename to htdocs/images/Screenshot_20210420-092957_Bliss_Launcher.png
diff --git a/images/Shell2.png b/htdocs/images/Shell2.png
similarity index 100%
rename from images/Shell2.png
rename to htdocs/images/Shell2.png
diff --git a/images/TWRP_Backup.png b/htdocs/images/TWRP_Backup.png
similarity index 100%
rename from images/TWRP_Backup.png
rename to htdocs/images/TWRP_Backup.png
diff --git a/images/TWRP_Backup1.png b/htdocs/images/TWRP_Backup1.png
similarity index 100%
rename from images/TWRP_Backup1.png
rename to htdocs/images/TWRP_Backup1.png
diff --git a/images/TWRP_Backup2.png b/htdocs/images/TWRP_Backup2.png
similarity index 100%
rename from images/TWRP_Backup2.png
rename to htdocs/images/TWRP_Backup2.png
diff --git a/images/TWRP_Recovery2.png b/htdocs/images/TWRP_Recovery2.png
similarity index 100%
rename from images/TWRP_Recovery2.png
rename to htdocs/images/TWRP_Recovery2.png
diff --git a/images/TWRP_Restore.png b/htdocs/images/TWRP_Restore.png
similarity index 100%
rename from images/TWRP_Restore.png
rename to htdocs/images/TWRP_Restore.png
diff --git a/images/TWRP_Restore1.png b/htdocs/images/TWRP_Restore1.png
similarity index 100%
rename from images/TWRP_Restore1.png
rename to htdocs/images/TWRP_Restore1.png
diff --git a/images/TrebleCheck_Apps-small.png b/htdocs/images/TrebleCheck_Apps-small.png
similarity index 100%
rename from images/TrebleCheck_Apps-small.png
rename to htdocs/images/TrebleCheck_Apps-small.png
diff --git a/images/Weblat_login.png b/htdocs/images/Weblat_login.png
similarity index 100%
rename from images/Weblat_login.png
rename to htdocs/images/Weblat_login.png
diff --git a/images/Weblate_Browse_All_Projects.png b/htdocs/images/Weblate_Browse_All_Projects.png
similarity index 100%
rename from images/Weblate_Browse_All_Projects.png
rename to htdocs/images/Weblate_Browse_All_Projects.png
diff --git a/images/Weblate_Components_View.png b/htdocs/images/Weblate_Components_View.png
similarity index 100%
rename from images/Weblate_Components_View.png
rename to htdocs/images/Weblate_Components_View.png
diff --git a/images/Weblate_Dashboard.png b/htdocs/images/Weblate_Dashboard.png
similarity index 100%
rename from images/Weblate_Dashboard.png
rename to htdocs/images/Weblate_Dashboard.png
diff --git a/images/Weblate_Suggestion.png b/htdocs/images/Weblate_Suggestion.png
similarity index 100%
rename from images/Weblate_Suggestion.png
rename to htdocs/images/Weblate_Suggestion.png
diff --git a/images/Weblate_Translate.png b/htdocs/images/Weblate_Translate.png
similarity index 100%
rename from images/Weblate_Translate.png
rename to htdocs/images/Weblate_Translate.png
diff --git a/images/Weblate_Translations_Screen.png b/htdocs/images/Weblate_Translations_Screen.png
similarity index 100%
rename from images/Weblate_Translations_Screen.png
rename to htdocs/images/Weblate_Translations_Screen.png
diff --git a/images/adb_Device_Detected.png b/htdocs/images/adb_Device_Detected.png
similarity index 100%
rename from images/adb_Device_Detected.png
rename to htdocs/images/adb_Device_Detected.png
diff --git a/images/adb_devices.png b/htdocs/images/adb_devices.png
similarity index 100%
rename from images/adb_devices.png
rename to htdocs/images/adb_devices.png
diff --git a/images/create-e-account.png b/htdocs/images/create-e-account.png
similarity index 100%
rename from images/create-e-account.png
rename to htdocs/images/create-e-account.png
diff --git a/images/devices/2e.jpg b/htdocs/images/devices/2e.jpg
similarity index 100%
rename from images/devices/2e.jpg
rename to htdocs/images/devices/2e.jpg
diff --git a/images/devices/Amber.jpg b/htdocs/images/devices/Amber.jpg
similarity index 100%
rename from images/devices/Amber.jpg
rename to htdocs/images/devices/Amber.jpg
diff --git a/images/devices/FP2.jpg b/htdocs/images/devices/FP2.jpg
similarity index 100%
rename from images/devices/FP2.jpg
rename to htdocs/images/devices/FP2.jpg
diff --git a/images/devices/FP3.jpg b/htdocs/images/devices/FP3.jpg
similarity index 100%
rename from images/devices/FP3.jpg
rename to htdocs/images/devices/FP3.jpg
diff --git a/images/devices/GS290.jpg b/htdocs/images/devices/GS290.jpg
similarity index 100%
rename from images/devices/GS290.jpg
rename to htdocs/images/devices/GS290.jpg
diff --git a/images/devices/I01WD.jpg b/htdocs/images/devices/I01WD.jpg
similarity index 100%
rename from images/devices/I01WD.jpg
rename to htdocs/images/devices/I01WD.jpg
diff --git a/images/devices/RMX1801.jpg b/htdocs/images/devices/RMX1801.jpg
similarity index 100%
rename from images/devices/RMX1801.jpg
rename to htdocs/images/devices/RMX1801.jpg
diff --git a/images/devices/X00TD.jpg b/htdocs/images/devices/X00TD.jpg
similarity index 100%
rename from images/devices/X00TD.jpg
rename to htdocs/images/devices/X00TD.jpg
diff --git a/images/devices/X01BD.jpg b/htdocs/images/devices/X01BD.jpg
similarity index 100%
rename from images/devices/X01BD.jpg
rename to htdocs/images/devices/X01BD.jpg
diff --git a/images/devices/YTX703F.jpg b/htdocs/images/devices/YTX703F.jpg
similarity index 100%
rename from images/devices/YTX703F.jpg
rename to htdocs/images/devices/YTX703F.jpg
diff --git a/images/devices/YTX703L.jpg b/htdocs/images/devices/YTX703L.jpg
similarity index 100%
rename from images/devices/YTX703L.jpg
rename to htdocs/images/devices/YTX703L.jpg
diff --git a/images/devices/a3xelte.jpg b/htdocs/images/devices/a3xelte.jpg
similarity index 100%
rename from images/devices/a3xelte.jpg
rename to htdocs/images/devices/a3xelte.jpg
diff --git a/images/devices/a5xelte.jpg b/htdocs/images/devices/a5xelte.jpg
similarity index 100%
rename from images/devices/a5xelte.jpg
rename to htdocs/images/devices/a5xelte.jpg
diff --git a/images/devices/a5y17lte.jpg b/htdocs/images/devices/a5y17lte.jpg
similarity index 100%
rename from images/devices/a5y17lte.jpg
rename to htdocs/images/devices/a5y17lte.jpg
diff --git a/images/devices/a7y17lte.jpg b/htdocs/images/devices/a7y17lte.jpg
similarity index 100%
rename from images/devices/a7y17lte.jpg
rename to htdocs/images/devices/a7y17lte.jpg
diff --git a/images/devices/addison.jpg b/htdocs/images/devices/addison.jpg
similarity index 100%
rename from images/devices/addison.jpg
rename to htdocs/images/devices/addison.jpg
diff --git a/images/devices/albus.jpg b/htdocs/images/devices/albus.jpg
similarity index 100%
rename from images/devices/albus.jpg
rename to htdocs/images/devices/albus.jpg
diff --git a/images/devices/angler.jpg b/htdocs/images/devices/angler.jpg
similarity index 100%
rename from images/devices/angler.jpg
rename to htdocs/images/devices/angler.jpg
diff --git a/images/devices/athene.jpg b/htdocs/images/devices/athene.jpg
similarity index 100%
rename from images/devices/athene.jpg
rename to htdocs/images/devices/athene.jpg
diff --git a/images/devices/axon7.jpg b/htdocs/images/devices/axon7.jpg
similarity index 100%
rename from images/devices/axon7.jpg
rename to htdocs/images/devices/axon7.jpg
diff --git a/images/devices/bacon.jpg b/htdocs/images/devices/bacon.jpg
similarity index 100%
rename from images/devices/bacon.jpg
rename to htdocs/images/devices/bacon.jpg
diff --git a/images/devices/bardock.jpg b/htdocs/images/devices/bardock.jpg
similarity index 100%
rename from images/devices/bardock.jpg
rename to htdocs/images/devices/bardock.jpg
diff --git a/images/devices/bardockpro.jpg b/htdocs/images/devices/bardockpro.jpg
similarity index 100%
rename from images/devices/bardockpro.jpg
rename to htdocs/images/devices/bardockpro.jpg
diff --git a/images/devices/beryllium.jpg b/htdocs/images/devices/beryllium.jpg
similarity index 100%
rename from images/devices/beryllium.jpg
rename to htdocs/images/devices/beryllium.jpg
diff --git a/images/devices/bullhead.jpg b/htdocs/images/devices/bullhead.jpg
similarity index 100%
rename from images/devices/bullhead.jpg
rename to htdocs/images/devices/bullhead.jpg
diff --git a/images/devices/cancro.jpg b/htdocs/images/devices/cancro.jpg
similarity index 100%
rename from images/devices/cancro.jpg
rename to htdocs/images/devices/cancro.jpg
diff --git a/images/devices/capricorn.jpg b/htdocs/images/devices/capricorn.jpg
similarity index 100%
rename from images/devices/capricorn.jpg
rename to htdocs/images/devices/capricorn.jpg
diff --git a/images/devices/cheeseburger.jpg b/htdocs/images/devices/cheeseburger.jpg
similarity index 100%
rename from images/devices/cheeseburger.jpg
rename to htdocs/images/devices/cheeseburger.jpg
diff --git a/images/devices/chef.jpg b/htdocs/images/devices/chef.jpg
similarity index 100%
rename from images/devices/chef.jpg
rename to htdocs/images/devices/chef.jpg
diff --git a/images/devices/cheryl.jpg b/htdocs/images/devices/cheryl.jpg
similarity index 100%
rename from images/devices/cheryl.jpg
rename to htdocs/images/devices/cheryl.jpg
diff --git a/images/devices/chiron.jpg b/htdocs/images/devices/chiron.jpg
similarity index 100%
rename from images/devices/chiron.jpg
rename to htdocs/images/devices/chiron.jpg
diff --git a/images/devices/condor.jpg b/htdocs/images/devices/condor.jpg
similarity index 100%
rename from images/devices/condor.jpg
rename to htdocs/images/devices/condor.jpg
diff --git a/images/devices/crackling.jpg b/htdocs/images/devices/crackling.jpg
similarity index 100%
rename from images/devices/crackling.jpg
rename to htdocs/images/devices/crackling.jpg
diff --git a/images/devices/crownlte.jpg b/htdocs/images/devices/crownlte.jpg
similarity index 100%
rename from images/devices/crownlte.jpg
rename to htdocs/images/devices/crownlte.jpg
diff --git a/images/devices/d802.jpg b/htdocs/images/devices/d802.jpg
similarity index 100%
rename from images/devices/d802.jpg
rename to htdocs/images/devices/d802.jpg
diff --git a/images/devices/d855.jpg b/htdocs/images/devices/d855.jpg
similarity index 100%
rename from images/devices/d855.jpg
rename to htdocs/images/devices/d855.jpg
diff --git a/images/devices/dipper.jpg b/htdocs/images/devices/dipper.jpg
similarity index 100%
rename from images/devices/dipper.jpg
rename to htdocs/images/devices/dipper.jpg
diff --git a/images/devices/discovery.jpg b/htdocs/images/devices/discovery.jpg
similarity index 100%
rename from images/devices/discovery.jpg
rename to htdocs/images/devices/discovery.jpg
diff --git a/images/devices/dream2lte.jpg b/htdocs/images/devices/dream2lte.jpg
similarity index 100%
rename from images/devices/dream2lte.jpg
rename to htdocs/images/devices/dream2lte.jpg
diff --git a/images/devices/dreamlte.jpg b/htdocs/images/devices/dreamlte.jpg
similarity index 100%
rename from images/devices/dreamlte.jpg
rename to htdocs/images/devices/dreamlte.jpg
diff --git a/images/devices/dumpling.jpg b/htdocs/images/devices/dumpling.jpg
similarity index 100%
rename from images/devices/dumpling.jpg
rename to htdocs/images/devices/dumpling.jpg
diff --git a/images/devices/enchilada.jpg b/htdocs/images/devices/enchilada.jpg
similarity index 100%
rename from images/devices/enchilada.jpg
rename to htdocs/images/devices/enchilada.jpg
diff --git a/images/devices/ether.jpg b/htdocs/images/devices/ether.jpg
similarity index 100%
rename from images/devices/ether.jpg
rename to htdocs/images/devices/ether.jpg
diff --git a/images/devices/evert.jpg b/htdocs/images/devices/evert.jpg
similarity index 100%
rename from images/devices/evert.jpg
rename to htdocs/images/devices/evert.jpg
diff --git a/images/devices/f1f.jpg b/htdocs/images/devices/f1f.jpg
similarity index 100%
rename from images/devices/f1f.jpg
rename to htdocs/images/devices/f1f.jpg
diff --git a/images/devices/fajita.jpg b/htdocs/images/devices/fajita.jpg
similarity index 100%
rename from images/devices/fajita.jpg
rename to htdocs/images/devices/fajita.jpg
diff --git a/images/devices/falcon.jpg b/htdocs/images/devices/falcon.jpg
similarity index 100%
rename from images/devices/falcon.jpg
rename to htdocs/images/devices/falcon.jpg
diff --git a/images/devices/find7.jpg b/htdocs/images/devices/find7.jpg
similarity index 100%
rename from images/devices/find7.jpg
rename to htdocs/images/devices/find7.jpg
diff --git a/images/devices/gemini.jpg b/htdocs/images/devices/gemini.jpg
similarity index 100%
rename from images/devices/gemini.jpg
rename to htdocs/images/devices/gemini.jpg
diff --git a/images/devices/ginkgo.jpg b/htdocs/images/devices/ginkgo.jpg
similarity index 100%
rename from images/devices/ginkgo.jpg
rename to htdocs/images/devices/ginkgo.jpg
diff --git a/images/devices/griffin.jpg b/htdocs/images/devices/griffin.jpg
similarity index 100%
rename from images/devices/griffin.jpg
rename to htdocs/images/devices/griffin.jpg
diff --git a/images/devices/gts210vewifi.jpg b/htdocs/images/devices/gts210vewifi.jpg
similarity index 100%
rename from images/devices/gts210vewifi.jpg
rename to htdocs/images/devices/gts210vewifi.jpg
diff --git a/images/devices/gts28vewifi.jpg b/htdocs/images/devices/gts28vewifi.jpg
similarity index 100%
rename from images/devices/gts28vewifi.jpg
rename to htdocs/images/devices/gts28vewifi.jpg
diff --git a/images/devices/gts4lvwifi.jpg b/htdocs/images/devices/gts4lvwifi.jpg
similarity index 100%
rename from images/devices/gts4lvwifi.jpg
rename to htdocs/images/devices/gts4lvwifi.jpg
diff --git a/images/devices/guacamole.jpg b/htdocs/images/devices/guacamole.jpg
similarity index 100%
rename from images/devices/guacamole.jpg
rename to htdocs/images/devices/guacamole.jpg
diff --git a/images/devices/guacamoleb.jpg b/htdocs/images/devices/guacamoleb.jpg
similarity index 100%
rename from images/devices/guacamoleb.jpg
rename to htdocs/images/devices/guacamoleb.jpg
diff --git a/images/devices/h850.jpg b/htdocs/images/devices/h850.jpg
similarity index 100%
rename from images/devices/h850.jpg
rename to htdocs/images/devices/h850.jpg
diff --git a/images/devices/h990.jpg b/htdocs/images/devices/h990.jpg
similarity index 100%
rename from images/devices/h990.jpg
rename to htdocs/images/devices/h990.jpg
diff --git a/images/devices/ha3g.jpg b/htdocs/images/devices/ha3g.jpg
similarity index 100%
rename from images/devices/ha3g.jpg
rename to htdocs/images/devices/ha3g.jpg
diff --git a/images/devices/ham.jpg b/htdocs/images/devices/ham.jpg
similarity index 100%
rename from images/devices/ham.jpg
rename to htdocs/images/devices/ham.jpg
diff --git a/images/devices/hammerhead.jpg b/htdocs/images/devices/hammerhead.jpg
similarity index 100%
rename from images/devices/hammerhead.jpg
rename to htdocs/images/devices/hammerhead.jpg
diff --git a/images/devices/harpia.jpg b/htdocs/images/devices/harpia.jpg
similarity index 100%
rename from images/devices/harpia.jpg
rename to htdocs/images/devices/harpia.jpg
diff --git a/images/devices/hero2lte.jpg b/htdocs/images/devices/hero2lte.jpg
similarity index 100%
rename from images/devices/hero2lte.jpg
rename to htdocs/images/devices/hero2lte.jpg
diff --git a/images/devices/herolte.jpg b/htdocs/images/devices/herolte.jpg
similarity index 100%
rename from images/devices/herolte.jpg
rename to htdocs/images/devices/herolte.jpg
diff --git a/images/devices/hiaeuhl.jpg b/htdocs/images/devices/hiaeuhl.jpg
similarity index 100%
rename from images/devices/hiaeuhl.jpg
rename to htdocs/images/devices/hiaeuhl.jpg
diff --git a/images/devices/hlte.jpg b/htdocs/images/devices/hlte.jpg
similarity index 100%
rename from images/devices/hlte.jpg
rename to htdocs/images/devices/hlte.jpg
diff --git a/images/devices/i9300.jpg b/htdocs/images/devices/i9300.jpg
similarity index 100%
rename from images/devices/i9300.jpg
rename to htdocs/images/devices/i9300.jpg
diff --git a/images/devices/i9305.jpg b/htdocs/images/devices/i9305.jpg
similarity index 100%
rename from images/devices/i9305.jpg
rename to htdocs/images/devices/i9305.jpg
diff --git a/images/devices/j53gxx.jpg b/htdocs/images/devices/j53gxx.jpg
similarity index 100%
rename from images/devices/j53gxx.jpg
rename to htdocs/images/devices/j53gxx.jpg
diff --git a/images/devices/j5lte.jpg b/htdocs/images/devices/j5lte.jpg
similarity index 100%
rename from images/devices/j5lte.jpg
rename to htdocs/images/devices/j5lte.jpg
diff --git a/images/devices/j5ltechn.jpg b/htdocs/images/devices/j5ltechn.jpg
similarity index 100%
rename from images/devices/j5ltechn.jpg
rename to htdocs/images/devices/j5ltechn.jpg
diff --git a/images/devices/j5nlte.jpg b/htdocs/images/devices/j5nlte.jpg
similarity index 100%
rename from images/devices/j5nlte.jpg
rename to htdocs/images/devices/j5nlte.jpg
diff --git a/images/devices/j7elte.jpg b/htdocs/images/devices/j7elte.jpg
similarity index 100%
rename from images/devices/j7elte.jpg
rename to htdocs/images/devices/j7elte.jpg
diff --git a/images/devices/jactivelte.jpg b/htdocs/images/devices/jactivelte.jpg
similarity index 100%
rename from images/devices/jactivelte.jpg
rename to htdocs/images/devices/jactivelte.jpg
diff --git a/images/devices/jalebi.jpg b/htdocs/images/devices/jalebi.jpg
similarity index 100%
rename from images/devices/jalebi.jpg
rename to htdocs/images/devices/jalebi.jpg
diff --git a/images/devices/jasmine_sprout.jpg b/htdocs/images/devices/jasmine_sprout.jpg
similarity index 100%
rename from images/devices/jasmine_sprout.jpg
rename to htdocs/images/devices/jasmine_sprout.jpg
diff --git a/images/devices/jason.jpg b/htdocs/images/devices/jason.jpg
similarity index 100%
rename from images/devices/jason.jpg
rename to htdocs/images/devices/jason.jpg
diff --git a/images/devices/jfltexx.jpg b/htdocs/images/devices/jfltexx.jpg
similarity index 100%
rename from images/devices/jfltexx.jpg
rename to htdocs/images/devices/jfltexx.jpg
diff --git a/images/devices/kccat6.jpg b/htdocs/images/devices/kccat6.jpg
similarity index 100%
rename from images/devices/kccat6.jpg
rename to htdocs/images/devices/kccat6.jpg
diff --git a/images/devices/kenzo.jpg b/htdocs/images/devices/kenzo.jpg
similarity index 100%
rename from images/devices/kenzo.jpg
rename to htdocs/images/devices/kenzo.jpg
diff --git a/images/devices/kirin.jpg b/htdocs/images/devices/kirin.jpg
similarity index 100%
rename from images/devices/kirin.jpg
rename to htdocs/images/devices/kirin.jpg
diff --git a/images/devices/kiwi.jpg b/htdocs/images/devices/kiwi.jpg
similarity index 100%
rename from images/devices/kiwi.jpg
rename to htdocs/images/devices/kiwi.jpg
diff --git a/images/devices/klte.jpg b/htdocs/images/devices/klte.jpg
similarity index 100%
rename from images/devices/klte.jpg
rename to htdocs/images/devices/klte.jpg
diff --git a/images/devices/klteactivexx.jpg b/htdocs/images/devices/klteactivexx.jpg
similarity index 100%
rename from images/devices/klteactivexx.jpg
rename to htdocs/images/devices/klteactivexx.jpg
diff --git a/images/devices/kuntao.jpg b/htdocs/images/devices/kuntao.jpg
similarity index 100%
rename from images/devices/kuntao.jpg
rename to htdocs/images/devices/kuntao.jpg
diff --git a/images/devices/lake.jpg b/htdocs/images/devices/lake.jpg
similarity index 100%
rename from images/devices/lake.jpg
rename to htdocs/images/devices/lake.jpg
diff --git a/images/devices/land.jpg b/htdocs/images/devices/land.jpg
similarity index 100%
rename from images/devices/land.jpg
rename to htdocs/images/devices/land.jpg
diff --git a/images/devices/lavender.jpg b/htdocs/images/devices/lavender.jpg
similarity index 100%
rename from images/devices/lavender.jpg
rename to htdocs/images/devices/lavender.jpg
diff --git a/images/devices/libra.jpg b/htdocs/images/devices/libra.jpg
similarity index 100%
rename from images/devices/libra.jpg
rename to htdocs/images/devices/libra.jpg
diff --git a/images/devices/lilac.jpg b/htdocs/images/devices/lilac.jpg
similarity index 100%
rename from images/devices/lilac.jpg
rename to htdocs/images/devices/lilac.jpg
diff --git a/images/devices/lithium.jpg b/htdocs/images/devices/lithium.jpg
similarity index 100%
rename from images/devices/lithium.jpg
rename to htdocs/images/devices/lithium.jpg
diff --git a/images/devices/lux.jpg b/htdocs/images/devices/lux.jpg
similarity index 100%
rename from images/devices/lux.jpg
rename to htdocs/images/devices/lux.jpg
diff --git a/images/devices/m8.jpg b/htdocs/images/devices/m8.jpg
similarity index 100%
rename from images/devices/m8.jpg
rename to htdocs/images/devices/m8.jpg
diff --git a/images/devices/m8d.jpg b/htdocs/images/devices/m8d.jpg
similarity index 100%
rename from images/devices/m8d.jpg
rename to htdocs/images/devices/m8d.jpg
diff --git a/images/devices/mako.jpg b/htdocs/images/devices/mako.jpg
similarity index 100%
rename from images/devices/mako.jpg
rename to htdocs/images/devices/mako.jpg
diff --git a/images/devices/marlin.jpg b/htdocs/images/devices/marlin.jpg
similarity index 100%
rename from images/devices/marlin.jpg
rename to htdocs/images/devices/marlin.jpg
diff --git a/images/devices/mata.jpg b/htdocs/images/devices/mata.jpg
similarity index 100%
rename from images/devices/mata.jpg
rename to htdocs/images/devices/mata.jpg
diff --git a/images/devices/merlin.jpg b/htdocs/images/devices/merlin.jpg
similarity index 100%
rename from images/devices/merlin.jpg
rename to htdocs/images/devices/merlin.jpg
diff --git a/images/devices/mermaid.jpg b/htdocs/images/devices/mermaid.jpg
similarity index 100%
rename from images/devices/mermaid.jpg
rename to htdocs/images/devices/mermaid.jpg
diff --git a/images/devices/mido.jpg b/htdocs/images/devices/mido.jpg
similarity index 100%
rename from images/devices/mido.jpg
rename to htdocs/images/devices/mido.jpg
diff --git a/images/devices/n7100.jpg b/htdocs/images/devices/n7100.jpg
similarity index 100%
rename from images/devices/n7100.jpg
rename to htdocs/images/devices/n7100.jpg
diff --git a/images/devices/nash.jpg b/htdocs/images/devices/nash.jpg
similarity index 100%
rename from images/devices/nash.jpg
rename to htdocs/images/devices/nash.jpg
diff --git a/images/devices/natrium.jpg b/htdocs/images/devices/natrium.jpg
similarity index 100%
rename from images/devices/natrium.jpg
rename to htdocs/images/devices/natrium.jpg
diff --git a/images/devices/nx563j.jpg b/htdocs/images/devices/nx563j.jpg
similarity index 100%
rename from images/devices/nx563j.jpg
rename to htdocs/images/devices/nx563j.jpg
diff --git a/images/devices/olimex.jpg b/htdocs/images/devices/olimex.jpg
similarity index 100%
rename from images/devices/olimex.jpg
rename to htdocs/images/devices/olimex.jpg
diff --git a/images/devices/onclite.jpg b/htdocs/images/devices/onclite.jpg
similarity index 100%
rename from images/devices/onclite.jpg
rename to htdocs/images/devices/onclite.jpg
diff --git a/images/devices/oneplus2.jpg b/htdocs/images/devices/oneplus2.jpg
similarity index 100%
rename from images/devices/oneplus2.jpg
rename to htdocs/images/devices/oneplus2.jpg
diff --git a/images/devices/oneplus3.jpg b/htdocs/images/devices/oneplus3.jpg
similarity index 100%
rename from images/devices/oneplus3.jpg
rename to htdocs/images/devices/oneplus3.jpg
diff --git a/images/devices/onyx.jpg b/htdocs/images/devices/onyx.jpg
similarity index 100%
rename from images/devices/onyx.jpg
rename to htdocs/images/devices/onyx.jpg
diff --git a/images/devices/osprey.jpg b/htdocs/images/devices/osprey.jpg
similarity index 100%
rename from images/devices/osprey.jpg
rename to htdocs/images/devices/osprey.jpg
diff --git a/images/devices/payton.jpg b/htdocs/images/devices/payton.jpg
similarity index 100%
rename from images/devices/payton.jpg
rename to htdocs/images/devices/payton.jpg
diff --git a/images/devices/peregrine.jpg b/htdocs/images/devices/peregrine.jpg
similarity index 100%
rename from images/devices/peregrine.jpg
rename to htdocs/images/devices/peregrine.jpg
diff --git a/images/devices/pinebook.jpg b/htdocs/images/devices/pinebook.jpg
similarity index 100%
rename from images/devices/pinebook.jpg
rename to htdocs/images/devices/pinebook.jpg
diff --git a/images/devices/pioneer.jpg b/htdocs/images/devices/pioneer.jpg
similarity index 100%
rename from images/devices/pioneer.jpg
rename to htdocs/images/devices/pioneer.jpg
diff --git a/images/devices/pme.jpg b/htdocs/images/devices/pme.jpg
similarity index 100%
rename from images/devices/pme.jpg
rename to htdocs/images/devices/pme.jpg
diff --git a/images/devices/polaris.jpg b/htdocs/images/devices/polaris.jpg
similarity index 100%
rename from images/devices/polaris.jpg
rename to htdocs/images/devices/polaris.jpg
diff --git a/images/devices/r5.jpg b/htdocs/images/devices/r5.jpg
similarity index 100%
rename from images/devices/r5.jpg
rename to htdocs/images/devices/r5.jpg
diff --git a/images/devices/r7plus.jpg b/htdocs/images/devices/r7plus.jpg
similarity index 100%
rename from images/devices/r7plus.jpg
rename to htdocs/images/devices/r7plus.jpg
diff --git a/images/devices/r7sf.jpg b/htdocs/images/devices/r7sf.jpg
similarity index 100%
rename from images/devices/r7sf.jpg
rename to htdocs/images/devices/r7sf.jpg
diff --git a/images/devices/river.jpg b/htdocs/images/devices/river.jpg
similarity index 100%
rename from images/devices/river.jpg
rename to htdocs/images/devices/river.jpg
diff --git a/images/devices/s2.jpg b/htdocs/images/devices/s2.jpg
similarity index 100%
rename from images/devices/s2.jpg
rename to htdocs/images/devices/s2.jpg
diff --git a/images/devices/s3ve3gds.jpg b/htdocs/images/devices/s3ve3gds.jpg
similarity index 100%
rename from images/devices/s3ve3gds.jpg
rename to htdocs/images/devices/s3ve3gds.jpg
diff --git a/images/devices/s3ve3gjv.jpg b/htdocs/images/devices/s3ve3gjv.jpg
similarity index 100%
rename from images/devices/s3ve3gjv.jpg
rename to htdocs/images/devices/s3ve3gjv.jpg
diff --git a/images/devices/s3ve3gxx.jpg b/htdocs/images/devices/s3ve3gxx.jpg
similarity index 100%
rename from images/devices/s3ve3gxx.jpg
rename to htdocs/images/devices/s3ve3gxx.jpg
diff --git a/images/devices/s5neolte.jpg b/htdocs/images/devices/s5neolte.jpg
similarity index 100%
rename from images/devices/s5neolte.jpg
rename to htdocs/images/devices/s5neolte.jpg
diff --git a/images/devices/sagit.jpg b/htdocs/images/devices/sagit.jpg
similarity index 100%
rename from images/devices/sagit.jpg
rename to htdocs/images/devices/sagit.jpg
diff --git a/images/devices/sailfish.jpg b/htdocs/images/devices/sailfish.jpg
similarity index 100%
rename from images/devices/sailfish.jpg
rename to htdocs/images/devices/sailfish.jpg
diff --git a/images/devices/santoni.jpg b/htdocs/images/devices/santoni.jpg
similarity index 100%
rename from images/devices/santoni.jpg
rename to htdocs/images/devices/santoni.jpg
diff --git a/images/devices/scorpio.jpg b/htdocs/images/devices/scorpio.jpg
similarity index 100%
rename from images/devices/scorpio.jpg
rename to htdocs/images/devices/scorpio.jpg
diff --git a/images/devices/serrano3gxx.jpg b/htdocs/images/devices/serrano3gxx.jpg
similarity index 100%
rename from images/devices/serrano3gxx.jpg
rename to htdocs/images/devices/serrano3gxx.jpg
diff --git a/images/devices/serranodsdd.jpg b/htdocs/images/devices/serranodsdd.jpg
similarity index 100%
rename from images/devices/serranodsdd.jpg
rename to htdocs/images/devices/serranodsdd.jpg
diff --git a/images/devices/serranoltexx.jpg b/htdocs/images/devices/serranoltexx.jpg
similarity index 100%
rename from images/devices/serranoltexx.jpg
rename to htdocs/images/devices/serranoltexx.jpg
diff --git a/images/devices/shamu.jpg b/htdocs/images/devices/shamu.jpg
similarity index 100%
rename from images/devices/shamu.jpg
rename to htdocs/images/devices/shamu.jpg
diff --git a/images/devices/star2lte.jpg b/htdocs/images/devices/star2lte.jpg
similarity index 100%
rename from images/devices/star2lte.jpg
rename to htdocs/images/devices/star2lte.jpg
diff --git a/images/devices/starlte.jpg b/htdocs/images/devices/starlte.jpg
similarity index 100%
rename from images/devices/starlte.jpg
rename to htdocs/images/devices/starlte.jpg
diff --git a/images/devices/sumire.jpg b/htdocs/images/devices/sumire.jpg
similarity index 100%
rename from images/devices/sumire.jpg
rename to htdocs/images/devices/sumire.jpg
diff --git a/images/devices/surnia.jpg b/htdocs/images/devices/surnia.jpg
similarity index 100%
rename from images/devices/surnia.jpg
rename to htdocs/images/devices/surnia.jpg
diff --git a/images/devices/suzuran.jpg b/htdocs/images/devices/suzuran.jpg
similarity index 100%
rename from images/devices/suzuran.jpg
rename to htdocs/images/devices/suzuran.jpg
diff --git a/images/devices/t0lte.jpg b/htdocs/images/devices/t0lte.jpg
similarity index 100%
rename from images/devices/t0lte.jpg
rename to htdocs/images/devices/t0lte.jpg
diff --git a/images/devices/taimen.jpg b/htdocs/images/devices/taimen.jpg
similarity index 100%
rename from images/devices/taimen.jpg
rename to htdocs/images/devices/taimen.jpg
diff --git a/images/devices/tissot.jpg b/htdocs/images/devices/tissot.jpg
similarity index 100%
rename from images/devices/tissot.jpg
rename to htdocs/images/devices/tissot.jpg
diff --git a/images/devices/titan.jpg b/htdocs/images/devices/titan.jpg
similarity index 100%
rename from images/devices/titan.jpg
rename to htdocs/images/devices/titan.jpg
diff --git a/images/devices/treltexx.jpg b/htdocs/images/devices/treltexx.jpg
similarity index 100%
rename from images/devices/treltexx.jpg
rename to htdocs/images/devices/treltexx.jpg
diff --git a/images/devices/twolip.jpg b/htdocs/images/devices/twolip.jpg
similarity index 100%
rename from images/devices/twolip.jpg
rename to htdocs/images/devices/twolip.jpg
diff --git a/images/devices/victara.jpg b/htdocs/images/devices/victara.jpg
similarity index 100%
rename from images/devices/victara.jpg
rename to htdocs/images/devices/victara.jpg
diff --git a/images/devices/violet.jpg b/htdocs/images/devices/violet.jpg
similarity index 100%
rename from images/devices/violet.jpg
rename to htdocs/images/devices/violet.jpg
diff --git a/images/devices/voyager.jpg b/htdocs/images/devices/voyager.jpg
similarity index 100%
rename from images/devices/voyager.jpg
rename to htdocs/images/devices/voyager.jpg
diff --git a/images/devices/wayne.jpg b/htdocs/images/devices/wayne.jpg
similarity index 100%
rename from images/devices/wayne.jpg
rename to htdocs/images/devices/wayne.jpg
diff --git a/images/devices/whyred.jpg b/htdocs/images/devices/whyred.jpg
similarity index 100%
rename from images/devices/whyred.jpg
rename to htdocs/images/devices/whyred.jpg
diff --git a/images/devices/wt88047.jpg b/htdocs/images/devices/wt88047.jpg
similarity index 100%
rename from images/devices/wt88047.jpg
rename to htdocs/images/devices/wt88047.jpg
diff --git a/images/devices/x2.jpg b/htdocs/images/devices/x2.jpg
similarity index 100%
rename from images/devices/x2.jpg
rename to htdocs/images/devices/x2.jpg
diff --git a/images/devices/z2_plus.jpg b/htdocs/images/devices/z2_plus.jpg
similarity index 100%
rename from images/devices/z2_plus.jpg
rename to htdocs/images/devices/z2_plus.jpg
diff --git a/images/devices/z3.jpg b/htdocs/images/devices/z3.jpg
similarity index 100%
rename from images/devices/z3.jpg
rename to htdocs/images/devices/z3.jpg
diff --git a/images/devices/z3c.jpg b/htdocs/images/devices/z3c.jpg
similarity index 100%
rename from images/devices/z3c.jpg
rename to htdocs/images/devices/z3c.jpg
diff --git a/images/devices/zangya.jpg b/htdocs/images/devices/zangya.jpg
similarity index 100%
rename from images/devices/zangya.jpg
rename to htdocs/images/devices/zangya.jpg
diff --git a/images/devices/zangyapro.jpg b/htdocs/images/devices/zangyapro.jpg
similarity index 100%
rename from images/devices/zangyapro.jpg
rename to htdocs/images/devices/zangyapro.jpg
diff --git a/images/devices/zenfone3.jpg b/htdocs/images/devices/zenfone3.jpg
similarity index 100%
rename from images/devices/zenfone3.jpg
rename to htdocs/images/devices/zenfone3.jpg
diff --git a/images/devices/zerofltexx.jpg b/htdocs/images/devices/zerofltexx.jpg
similarity index 100%
rename from images/devices/zerofltexx.jpg
rename to htdocs/images/devices/zerofltexx.jpg
diff --git a/images/devices/zeroltexx.jpg b/htdocs/images/devices/zeroltexx.jpg
similarity index 100%
rename from images/devices/zeroltexx.jpg
rename to htdocs/images/devices/zeroltexx.jpg
diff --git a/images/devices/zl1.jpg b/htdocs/images/devices/zl1.jpg
similarity index 100%
rename from images/devices/zl1.jpg
rename to htdocs/images/devices/zl1.jpg
diff --git a/images/e-email.png b/htdocs/images/e-email.png
similarity index 100%
rename from images/e-email.png
rename to htdocs/images/e-email.png
diff --git a/images/e_logo.svg b/htdocs/images/e_logo.svg
similarity index 100%
rename from images/e_logo.svg
rename to htdocs/images/e_logo.svg
diff --git a/images/easy-installer-mainscreen.png b/htdocs/images/easy-installer-mainscreen.png
similarity index 100%
rename from images/easy-installer-mainscreen.png
rename to htdocs/images/easy-installer-mainscreen.png
diff --git a/images/easy-installer_2.png b/htdocs/images/easy-installer_2.png
similarity index 100%
rename from images/easy-installer_2.png
rename to htdocs/images/easy-installer_2.png
diff --git a/images/easy-installer_4.png b/htdocs/images/easy-installer_4.png
similarity index 100%
rename from images/easy-installer_4.png
rename to htdocs/images/easy-installer_4.png
diff --git a/images/easy-installer_5.png b/htdocs/images/easy-installer_5.png
similarity index 100%
rename from images/easy-installer_5.png
rename to htdocs/images/easy-installer_5.png
diff --git a/images/easy-installer_search.png b/htdocs/images/easy-installer_search.png
similarity index 100%
rename from images/easy-installer_search.png
rename to htdocs/images/easy-installer_search.png
diff --git a/images/easyinstaller-in-apps.png b/htdocs/images/easyinstaller-in-apps.png
similarity index 100%
rename from images/easyinstaller-in-apps.png
rename to htdocs/images/easyinstaller-in-apps.png
diff --git a/images/eshop_country_selection.png b/htdocs/images/eshop_country_selection.png
similarity index 100%
rename from images/eshop_country_selection.png
rename to htdocs/images/eshop_country_selection.png
diff --git a/images/howtos/2fa/apps_names.png b/htdocs/images/howtos/2fa/apps_names.png
similarity index 100%
rename from images/howtos/2fa/apps_names.png
rename to htdocs/images/howtos/2fa/apps_names.png
diff --git a/images/howtos/2fa/enabled_TOTP.png b/htdocs/images/howtos/2fa/enabled_TOTP.png
similarity index 100%
rename from images/howtos/2fa/enabled_TOTP.png
rename to htdocs/images/howtos/2fa/enabled_TOTP.png
diff --git a/images/howtos/2fa/eos_accounts.png b/htdocs/images/howtos/2fa/eos_accounts.png
similarity index 100%
rename from images/howtos/2fa/eos_accounts.png
rename to htdocs/images/howtos/2fa/eos_accounts.png
diff --git a/images/howtos/2fa/eos_add_account.png b/htdocs/images/howtos/2fa/eos_add_account.png
similarity index 100%
rename from images/howtos/2fa/eos_add_account.png
rename to htdocs/images/howtos/2fa/eos_add_account.png
diff --git a/images/howtos/2fa/eos_apptoken.png b/htdocs/images/howtos/2fa/eos_apptoken.png
similarity index 100%
rename from images/howtos/2fa/eos_apptoken.png
rename to htdocs/images/howtos/2fa/eos_apptoken.png
diff --git a/images/howtos/2fa/eos_mail_empty.png b/htdocs/images/howtos/2fa/eos_mail_empty.png
similarity index 100%
rename from images/howtos/2fa/eos_mail_empty.png
rename to htdocs/images/howtos/2fa/eos_mail_empty.png
diff --git a/images/howtos/2fa/eos_mail_filled.png b/htdocs/images/howtos/2fa/eos_mail_filled.png
similarity index 100%
rename from images/howtos/2fa/eos_mail_filled.png
rename to htdocs/images/howtos/2fa/eos_mail_filled.png
diff --git a/images/howtos/2fa/eos_maybe_manual_settings.png b/htdocs/images/howtos/2fa/eos_maybe_manual_settings.png
similarity index 100%
rename from images/howtos/2fa/eos_maybe_manual_settings.png
rename to htdocs/images/howtos/2fa/eos_maybe_manual_settings.png
diff --git a/images/howtos/2fa/eos_settings.png b/htdocs/images/howtos/2fa/eos_settings.png
similarity index 100%
rename from images/howtos/2fa/eos_settings.png
rename to htdocs/images/howtos/2fa/eos_settings.png
diff --git a/images/howtos/2fa/login_pass.png b/htdocs/images/howtos/2fa/login_pass.png
similarity index 100%
rename from images/howtos/2fa/login_pass.png
rename to htdocs/images/howtos/2fa/login_pass.png
diff --git a/images/howtos/2fa/popup_fail.png b/htdocs/images/howtos/2fa/popup_fail.png
similarity index 100%
rename from images/howtos/2fa/popup_fail.png
rename to htdocs/images/howtos/2fa/popup_fail.png
diff --git a/images/howtos/2fa/security_screen.png b/htdocs/images/howtos/2fa/security_screen.png
similarity index 100%
rename from images/howtos/2fa/security_screen.png
rename to htdocs/images/howtos/2fa/security_screen.png
diff --git a/images/howtos/adb/about.png b/htdocs/images/howtos/adb/about.png
similarity index 100%
rename from images/howtos/adb/about.png
rename to htdocs/images/howtos/adb/about.png
diff --git a/images/howtos/adb/adb_executed.png b/htdocs/images/howtos/adb/adb_executed.png
similarity index 100%
rename from images/howtos/adb/adb_executed.png
rename to htdocs/images/howtos/adb/adb_executed.png
diff --git a/images/howtos/adb/advanced_system_settings.png b/htdocs/images/howtos/adb/advanced_system_settings.png
similarity index 100%
rename from images/howtos/adb/advanced_system_settings.png
rename to htdocs/images/howtos/adb/advanced_system_settings.png
diff --git a/images/howtos/adb/browse_to_folder.png b/htdocs/images/howtos/adb/browse_to_folder.png
similarity index 100%
rename from images/howtos/adb/browse_to_folder.png
rename to htdocs/images/howtos/adb/browse_to_folder.png
diff --git a/images/howtos/adb/cmd.png b/htdocs/images/howtos/adb/cmd.png
similarity index 100%
rename from images/howtos/adb/cmd.png
rename to htdocs/images/howtos/adb/cmd.png
diff --git a/images/howtos/adb/create_folder.png b/htdocs/images/howtos/adb/create_folder.png
similarity index 100%
rename from images/howtos/adb/create_folder.png
rename to htdocs/images/howtos/adb/create_folder.png
diff --git a/images/howtos/adb/desktop.png b/htdocs/images/howtos/adb/desktop.png
similarity index 100%
rename from images/howtos/adb/desktop.png
rename to htdocs/images/howtos/adb/desktop.png
diff --git a/images/howtos/adb/env_path.png b/htdocs/images/howtos/adb/env_path.png
similarity index 100%
rename from images/howtos/adb/env_path.png
rename to htdocs/images/howtos/adb/env_path.png
diff --git a/images/howtos/adb/env_path_1.png b/htdocs/images/howtos/adb/env_path_1.png
similarity index 100%
rename from images/howtos/adb/env_path_1.png
rename to htdocs/images/howtos/adb/env_path_1.png
diff --git a/images/howtos/adb/env_path_2.png b/htdocs/images/howtos/adb/env_path_2.png
similarity index 100%
rename from images/howtos/adb/env_path_2.png
rename to htdocs/images/howtos/adb/env_path_2.png
diff --git a/images/howtos/adb/env_path_3.png b/htdocs/images/howtos/adb/env_path_3.png
similarity index 100%
rename from images/howtos/adb/env_path_3.png
rename to htdocs/images/howtos/adb/env_path_3.png
diff --git a/images/howtos/adb/env_variables.png b/htdocs/images/howtos/adb/env_variables.png
similarity index 100%
rename from images/howtos/adb/env_variables.png
rename to htdocs/images/howtos/adb/env_variables.png
diff --git a/images/howtos/adb/extract_adbfiles.png b/htdocs/images/howtos/adb/extract_adbfiles.png
similarity index 100%
rename from images/howtos/adb/extract_adbfiles.png
rename to htdocs/images/howtos/adb/extract_adbfiles.png
diff --git a/images/howtos/adb/settings.png b/htdocs/images/howtos/adb/settings.png
similarity index 100%
rename from images/howtos/adb/settings.png
rename to htdocs/images/howtos/adb/settings.png
diff --git a/images/howtos/adb/start_cmd_1.png b/htdocs/images/howtos/adb/start_cmd_1.png
similarity index 100%
rename from images/howtos/adb/start_cmd_1.png
rename to htdocs/images/howtos/adb/start_cmd_1.png
diff --git a/images/howtos/adb/start_cmd_2.png b/htdocs/images/howtos/adb/start_cmd_2.png
similarity index 100%
rename from images/howtos/adb/start_cmd_2.png
rename to htdocs/images/howtos/adb/start_cmd_2.png
diff --git a/images/howtos/adb/system_in_list.png b/htdocs/images/howtos/adb/system_in_list.png
similarity index 100%
rename from images/howtos/adb/system_in_list.png
rename to htdocs/images/howtos/adb/system_in_list.png
diff --git a/images/howtos/change_recovery_address/address_input.png b/htdocs/images/howtos/change_recovery_address/address_input.png
similarity index 100%
rename from images/howtos/change_recovery_address/address_input.png
rename to htdocs/images/howtos/change_recovery_address/address_input.png
diff --git a/images/howtos/change_recovery_address/auth_modal.png b/htdocs/images/howtos/change_recovery_address/auth_modal.png
similarity index 100%
rename from images/howtos/change_recovery_address/auth_modal.png
rename to htdocs/images/howtos/change_recovery_address/auth_modal.png
diff --git a/images/howtos/change_recovery_address/change_confirmed.png b/htdocs/images/howtos/change_recovery_address/change_confirmed.png
similarity index 100%
rename from images/howtos/change_recovery_address/change_confirmed.png
rename to htdocs/images/howtos/change_recovery_address/change_confirmed.png
diff --git a/images/howtos/change_recovery_address/change_recovery_button.png b/htdocs/images/howtos/change_recovery_address/change_recovery_button.png
similarity index 100%
rename from images/howtos/change_recovery_address/change_recovery_button.png
rename to htdocs/images/howtos/change_recovery_address/change_recovery_button.png
diff --git a/images/howtos/change_recovery_address/security_tab.png b/htdocs/images/howtos/change_recovery_address/security_tab.png
similarity index 100%
rename from images/howtos/change_recovery_address/security_tab.png
rename to htdocs/images/howtos/change_recovery_address/security_tab.png
diff --git a/images/howtos/ecloud/choosing_applications.png b/htdocs/images/howtos/ecloud/choosing_applications.png
similarity index 100%
rename from images/howtos/ecloud/choosing_applications.png
rename to htdocs/images/howtos/ecloud/choosing_applications.png
diff --git a/images/howtos/ecloud/reordering_applications.mov b/htdocs/images/howtos/ecloud/reordering_applications.mov
similarity index 100%
rename from images/howtos/ecloud/reordering_applications.mov
rename to htdocs/images/howtos/ecloud/reordering_applications.mov
diff --git a/images/howtos/ecloud/reordering_applications.png b/htdocs/images/howtos/ecloud/reordering_applications.png
similarity index 100%
rename from images/howtos/ecloud/reordering_applications.png
rename to htdocs/images/howtos/ecloud/reordering_applications.png
diff --git a/images/howtos/ecloud/reordering_applications.webm b/htdocs/images/howtos/ecloud/reordering_applications.webm
similarity index 100%
rename from images/howtos/ecloud/reordering_applications.webm
rename to htdocs/images/howtos/ecloud/reordering_applications.webm
diff --git a/images/new_issue_search.png b/htdocs/images/new_issue_search.png
similarity index 100%
rename from images/new_issue_search.png
rename to htdocs/images/new_issue_search.png
diff --git "a/images/Capture_d_\303\251cran_2019-04-30_\303\240_14.33.38.png" b/htdocs/images/online_services_login_eos_ecloud.png
similarity index 100%
rename from "images/Capture_d_\303\251cran_2019-04-30_\303\240_14.33.38.png"
rename to htdocs/images/online_services_login_eos_ecloud.png
diff --git a/images/rainloop_contacts_tab.png b/htdocs/images/rainloop_contacts_tab.png
similarity index 100%
rename from images/rainloop_contacts_tab.png
rename to htdocs/images/rainloop_contacts_tab.png
diff --git a/images/rainloop_copy_link.png b/htdocs/images/rainloop_copy_link.png
similarity index 100%
rename from images/rainloop_copy_link.png
rename to htdocs/images/rainloop_copy_link.png
diff --git a/images/rainloop_mail_tab.png b/htdocs/images/rainloop_mail_tab.png
similarity index 100%
rename from images/rainloop_mail_tab.png
rename to htdocs/images/rainloop_mail_tab.png
diff --git a/images/rainloop_settings.png b/htdocs/images/rainloop_settings.png
similarity index 100%
rename from images/rainloop_settings.png
rename to htdocs/images/rainloop_settings.png
diff --git a/images/rainloop_sync_settings.png b/htdocs/images/rainloop_sync_settings.png
similarity index 100%
rename from images/rainloop_sync_settings.png
rename to htdocs/images/rainloop_sync_settings.png
diff --git a/images/rainloop_webui.png b/htdocs/images/rainloop_webui.png
similarity index 100%
rename from images/rainloop_webui.png
rename to htdocs/images/rainloop_webui.png
diff --git a/images/screenshot_20200415_15_32_49.png b/htdocs/images/screenshot_20200415_15_32_49.png
similarity index 100%
rename from images/screenshot_20200415_15_32_49.png
rename to htdocs/images/screenshot_20200415_15_32_49.png
diff --git a/images/screenshot_20200415_15_32_56.png b/htdocs/images/screenshot_20200415_15_32_56.png
similarity index 100%
rename from images/screenshot_20200415_15_32_56.png
rename to htdocs/images/screenshot_20200415_15_32_56.png
diff --git a/images/screenshot_20200415_15_33_31.png b/htdocs/images/screenshot_20200415_15_33_31.png
similarity index 100%
rename from images/screenshot_20200415_15_33_31.png
rename to htdocs/images/screenshot_20200415_15_33_31.png
diff --git a/images/screenshot_20200415_15_33_34.png b/htdocs/images/screenshot_20200415_15_33_34.png
similarity index 100%
rename from images/screenshot_20200415_15_33_34.png
rename to htdocs/images/screenshot_20200415_15_33_34.png
diff --git a/images/screenshot_20200415_15_33_38.png b/htdocs/images/screenshot_20200415_15_33_38.png
similarity index 100%
rename from images/screenshot_20200415_15_33_38.png
rename to htdocs/images/screenshot_20200415_15_33_38.png
diff --git a/images/screenshot_20200415_15_33_41.png b/htdocs/images/screenshot_20200415_15_33_41.png
similarity index 100%
rename from images/screenshot_20200415_15_33_41.png
rename to htdocs/images/screenshot_20200415_15_33_41.png
diff --git a/images/screenshot_20200415_15_38_03.png b/htdocs/images/screenshot_20200415_15_38_03.png
similarity index 100%
rename from images/screenshot_20200415_15_38_03.png
rename to htdocs/images/screenshot_20200415_15_38_03.png
diff --git a/images/screenshot_20200415_15_38_10.png b/htdocs/images/screenshot_20200415_15_38_10.png
similarity index 100%
rename from images/screenshot_20200415_15_38_10.png
rename to htdocs/images/screenshot_20200415_15_38_10.png
diff --git a/images/screenshot_20200415_15_38_17.png b/htdocs/images/screenshot_20200415_15_38_17.png
similarity index 100%
rename from images/screenshot_20200415_15_38_17.png
rename to htdocs/images/screenshot_20200415_15_38_17.png
diff --git a/images/screenshot_20200415_15_38_24.png b/htdocs/images/screenshot_20200415_15_38_24.png
similarity index 100%
rename from images/screenshot_20200415_15_38_24.png
rename to htdocs/images/screenshot_20200415_15_38_24.png
diff --git a/images/screenshot_20200415_15_38_29.png b/htdocs/images/screenshot_20200415_15_38_29.png
similarity index 100%
rename from images/screenshot_20200415_15_38_29.png
rename to htdocs/images/screenshot_20200415_15_38_29.png
diff --git a/images/screenshot_20200415_15_38_37.png b/htdocs/images/screenshot_20200415_15_38_37.png
similarity index 100%
rename from images/screenshot_20200415_15_38_37.png
rename to htdocs/images/screenshot_20200415_15_38_37.png
diff --git a/images/screenshot_20200415_15_38_41.png b/htdocs/images/screenshot_20200415_15_38_41.png
similarity index 100%
rename from images/screenshot_20200415_15_38_41.png
rename to htdocs/images/screenshot_20200415_15_38_41.png
diff --git a/images/screenshot_20200624_15_22_06.png b/htdocs/images/screenshot_20200624_15_22_06.png
similarity index 100%
rename from images/screenshot_20200624_15_22_06.png
rename to htdocs/images/screenshot_20200624_15_22_06.png
diff --git a/images/screenshot_20200624_15_22_09.png b/htdocs/images/screenshot_20200624_15_22_09.png
similarity index 100%
rename from images/screenshot_20200624_15_22_09.png
rename to htdocs/images/screenshot_20200624_15_22_09.png
diff --git a/images/screenshot_20200624_15_22_12.png b/htdocs/images/screenshot_20200624_15_22_12.png
similarity index 100%
rename from images/screenshot_20200624_15_22_12.png
rename to htdocs/images/screenshot_20200624_15_22_12.png
diff --git a/images/screenshot_20200624_15_22_16.png b/htdocs/images/screenshot_20200624_15_22_16.png
similarity index 100%
rename from images/screenshot_20200624_15_22_16.png
rename to htdocs/images/screenshot_20200624_15_22_16.png
diff --git a/images/screenshot_20200624_15_22_20.png b/htdocs/images/screenshot_20200624_15_22_20.png
similarity index 100%
rename from images/screenshot_20200624_15_22_20.png
rename to htdocs/images/screenshot_20200624_15_22_20.png
diff --git a/images/screenshot_20200624_15_22_23-bis.png b/htdocs/images/screenshot_20200624_15_22_23-bis.png
similarity index 100%
rename from images/screenshot_20200624_15_22_23-bis.png
rename to htdocs/images/screenshot_20200624_15_22_23-bis.png
diff --git a/images/screenshot_20200624_15_22_23.png b/htdocs/images/screenshot_20200624_15_22_23.png
similarity index 100%
rename from images/screenshot_20200624_15_22_23.png
rename to htdocs/images/screenshot_20200624_15_22_23.png
diff --git a/images/screenshot_20200624_15_22_26.png b/htdocs/images/screenshot_20200624_15_22_26.png
similarity index 100%
rename from images/screenshot_20200624_15_22_26.png
rename to htdocs/images/screenshot_20200624_15_22_26.png
diff --git a/images/screenshot_20200624_15_22_35.png b/htdocs/images/screenshot_20200624_15_22_35.png
similarity index 100%
rename from images/screenshot_20200624_15_22_35.png
rename to htdocs/images/screenshot_20200624_15_22_35.png
diff --git a/images/screenshot_20201119_10_38_46.png b/htdocs/images/screenshot_20201119_10_38_46.png
similarity index 100%
rename from images/screenshot_20201119_10_38_46.png
rename to htdocs/images/screenshot_20201119_10_38_46.png
diff --git a/images/screenshot_20201119_10_38_53.png b/htdocs/images/screenshot_20201119_10_38_53.png
similarity index 100%
rename from images/screenshot_20201119_10_38_53.png
rename to htdocs/images/screenshot_20201119_10_38_53.png
diff --git a/images/screenshot_20201119_10_39_01.png b/htdocs/images/screenshot_20201119_10_39_01.png
similarity index 100%
rename from images/screenshot_20201119_10_39_01.png
rename to htdocs/images/screenshot_20201119_10_39_01.png
diff --git a/images/screenshot_20201119_10_39_06.png b/htdocs/images/screenshot_20201119_10_39_06.png
similarity index 100%
rename from images/screenshot_20201119_10_39_06.png
rename to htdocs/images/screenshot_20201119_10_39_06.png
diff --git a/images/screenshot_20201119_10_39_11.png b/htdocs/images/screenshot_20201119_10_39_11.png
similarity index 100%
rename from images/screenshot_20201119_10_39_11.png
rename to htdocs/images/screenshot_20201119_10_39_11.png
diff --git a/images/screenshot_20201119_10_54_46.png b/htdocs/images/screenshot_20201119_10_54_46.png
similarity index 100%
rename from images/screenshot_20201119_10_54_46.png
rename to htdocs/images/screenshot_20201119_10_54_46.png
diff --git a/images/screenshot_20201119_10_56_03.png b/htdocs/images/screenshot_20201119_10_56_03.png
similarity index 100%
rename from images/screenshot_20201119_10_56_03.png
rename to htdocs/images/screenshot_20201119_10_56_03.png
diff --git a/images/screenshot_20201119_11_08_39.png b/htdocs/images/screenshot_20201119_11_08_39.png
similarity index 100%
rename from images/screenshot_20201119_11_08_39.png
rename to htdocs/images/screenshot_20201119_11_08_39.png
diff --git a/images/ubuntu-software.png b/htdocs/images/ubuntu-software.png
similarity index 100%
rename from images/ubuntu-software.png
rename to htdocs/images/ubuntu-software.png
diff --git a/images/win_setup_easyinstaller_3.1.png b/htdocs/images/win_setup_easyinstaller_3.1.png
similarity index 100%
rename from images/win_setup_easyinstaller_3.1.png
rename to htdocs/images/win_setup_easyinstaller_3.1.png
diff --git a/images/win_setup_easyinstaller_3.2.png b/htdocs/images/win_setup_easyinstaller_3.2.png
similarity index 100%
rename from images/win_setup_easyinstaller_3.2.png
rename to htdocs/images/win_setup_easyinstaller_3.2.png
diff --git a/images/win_setup_easyinstaller_3.3.1.png b/htdocs/images/win_setup_easyinstaller_3.3.1.png
similarity index 100%
rename from images/win_setup_easyinstaller_3.3.1.png
rename to htdocs/images/win_setup_easyinstaller_3.3.1.png
diff --git a/images/win_setup_easyinstaller_3.3.png b/htdocs/images/win_setup_easyinstaller_3.3.png
similarity index 100%
rename from images/win_setup_easyinstaller_3.3.png
rename to htdocs/images/win_setup_easyinstaller_3.3.png
diff --git a/images/win_setup_easyinstaller_3.4.png b/htdocs/images/win_setup_easyinstaller_3.4.png
similarity index 100%
rename from images/win_setup_easyinstaller_3.4.png
rename to htdocs/images/win_setup_easyinstaller_3.4.png
diff --git a/images/win_setup_easyinstaller_3.5.png b/htdocs/images/win_setup_easyinstaller_3.5.png
similarity index 100%
rename from images/win_setup_easyinstaller_3.5.png
rename to htdocs/images/win_setup_easyinstaller_3.5.png
diff --git a/images/win_setup_easyinstaller_download_1.png b/htdocs/images/win_setup_easyinstaller_download_1.png
similarity index 100%
rename from images/win_setup_easyinstaller_download_1.png
rename to htdocs/images/win_setup_easyinstaller_download_1.png
diff --git a/images/win_setup_easyinstaller_menu_4.png b/htdocs/images/win_setup_easyinstaller_menu_4.png
similarity index 100%
rename from images/win_setup_easyinstaller_menu_4.png
rename to htdocs/images/win_setup_easyinstaller_menu_4.png
diff --git a/images/win_setup_easyinstaller_popup_1.png b/htdocs/images/win_setup_easyinstaller_popup_1.png
similarity index 100%
rename from images/win_setup_easyinstaller_popup_1.png
rename to htdocs/images/win_setup_easyinstaller_popup_1.png
diff --git a/images/win_setup_easyinstaller_popup_2.png b/htdocs/images/win_setup_easyinstaller_popup_2.png
similarity index 100%
rename from images/win_setup_easyinstaller_popup_2.png
rename to htdocs/images/win_setup_easyinstaller_popup_2.png
diff --git a/images/win_setup_easyinstaller_warning_1.jpg b/htdocs/images/win_setup_easyinstaller_warning_1.jpg
similarity index 100%
rename from images/win_setup_easyinstaller_warning_1.jpg
rename to htdocs/images/win_setup_easyinstaller_warning_1.jpg
diff --git a/images/win_setup_easyinstaller_warning_2.jpg b/htdocs/images/win_setup_easyinstaller_warning_2.jpg
similarity index 100%
rename from images/win_setup_easyinstaller_warning_2.jpg
rename to htdocs/images/win_setup_easyinstaller_warning_2.jpg
diff --git a/images/windows-clickOnDriverUpdates.png b/htdocs/images/windows-clickOnDriverUpdates.png
similarity index 100%
rename from images/windows-clickOnDriverUpdates.png
rename to htdocs/images/windows-clickOnDriverUpdates.png
diff --git a/images/windows-searchForUpdate.png b/htdocs/images/windows-searchForUpdate.png
similarity index 100%
rename from images/windows-searchForUpdate.png
rename to htdocs/images/windows-searchForUpdate.png
diff --git a/images/windows-selectDriverToUpdate-GS290.png b/htdocs/images/windows-selectDriverToUpdate-GS290.png
similarity index 100%
rename from images/windows-selectDriverToUpdate-GS290.png
rename to htdocs/images/windows-selectDriverToUpdate-GS290.png
diff --git a/images/windows-selectDriverToUpdate.png b/htdocs/images/windows-selectDriverToUpdate.png
similarity index 100%
rename from images/windows-selectDriverToUpdate.png
rename to htdocs/images/windows-selectDriverToUpdate.png
diff --git a/images/windows-showOptionnalUpdate.png b/htdocs/images/windows-showOptionnalUpdate.png
similarity index 100%
rename from images/windows-showOptionnalUpdate.png
rename to htdocs/images/windows-showOptionnalUpdate.png
diff --git a/images/windows-update-menu.png b/htdocs/images/windows-update-menu.png
similarity index 100%
rename from images/windows-update-menu.png
rename to htdocs/images/windows-update-menu.png
diff --git a/images/windows_easy_installer_icon.png b/htdocs/images/windows_easy_installer_icon.png
similarity index 100%
rename from images/windows_easy_installer_icon.png
rename to htdocs/images/windows_easy_installer_icon.png
diff --git a/images/your-e-id.png b/htdocs/images/your-e-id.png
similarity index 100%
rename from images/your-e-id.png
rename to htdocs/images/your-e-id.png
diff --git a/index.md b/htdocs/index.md
similarity index 100%
rename from index.md
rename to htdocs/index.md
diff --git a/pages/FP3-fix-bootloop-issue.md b/htdocs/pages/FP3-fix-bootloop-issue.md
similarity index 100%
rename from pages/FP3-fix-bootloop-issue.md
rename to htdocs/pages/FP3-fix-bootloop-issue.md
diff --git a/pages/apps.md b/htdocs/pages/apps.md
similarity index 100%
rename from pages/apps.md
rename to htdocs/pages/apps.md
diff --git a/pages/backup-and-restore-with-twrp.md b/htdocs/pages/backup-and-restore-with-twrp.md
similarity index 100%
rename from pages/backup-and-restore-with-twrp.md
rename to htdocs/pages/backup-and-restore-with-twrp.md
diff --git a/pages/build-e.md b/htdocs/pages/build-e.md
similarity index 100%
rename from pages/build-e.md
rename to htdocs/pages/build-e.md
diff --git a/pages/build-heimdall.md b/htdocs/pages/build-heimdall.md
similarity index 100%
rename from pages/build-heimdall.md
rename to htdocs/pages/build-heimdall.md
diff --git a/pages/build-status.md b/htdocs/pages/build-status.md
similarity index 100%
rename from pages/build-status.md
rename to htdocs/pages/build-status.md
diff --git a/pages/configure-email.md b/htdocs/pages/configure-email.md
similarity index 100%
rename from pages/configure-email.md
rename to htdocs/pages/configure-email.md
diff --git a/pages/covid-microg-implemenation.md b/htdocs/pages/covid-microg-implemenation.md
similarity index 100%
rename from pages/covid-microg-implemenation.md
rename to htdocs/pages/covid-microg-implemenation.md
diff --git a/pages/create-a-log.md b/htdocs/pages/create-a-log.md
similarity index 100%
rename from pages/create-a-log.md
rename to htdocs/pages/create-a-log.md
diff --git a/pages/create-an-ecloud-account.md b/htdocs/pages/create-an-ecloud-account.md
similarity index 100%
rename from pages/create-an-ecloud-account.md
rename to htdocs/pages/create-an-ecloud-account.md
diff --git a/pages/dev/dev/development.md b/htdocs/pages/dev/dev/development.md
similarity index 100%
rename from pages/dev/dev/development.md
rename to htdocs/pages/dev/dev/development.md
diff --git a/pages/dev/dev/issue-assignment.md b/htdocs/pages/dev/dev/issue-assignment.md
similarity index 100%
rename from pages/dev/dev/issue-assignment.md
rename to htdocs/pages/dev/dev/issue-assignment.md
diff --git a/pages/dev/dev/validation.md b/htdocs/pages/dev/dev/validation.md
similarity index 100%
rename from pages/dev/dev/validation.md
rename to htdocs/pages/dev/dev/validation.md
diff --git a/pages/dev/issue-template-bug.md b/htdocs/pages/dev/issue-template-bug.md
similarity index 100%
rename from pages/dev/issue-template-bug.md
rename to htdocs/pages/dev/issue-template-bug.md
diff --git a/pages/dev/issue-template-feature-proposal.md b/htdocs/pages/dev/issue-template-feature-proposal.md
similarity index 100%
rename from pages/dev/issue-template-feature-proposal.md
rename to htdocs/pages/dev/issue-template-feature-proposal.md
diff --git a/pages/dev/issue-template-improvement.md b/htdocs/pages/dev/issue-template-improvement.md
similarity index 100%
rename from pages/dev/issue-template-improvement.md
rename to htdocs/pages/dev/issue-template-improvement.md
diff --git a/pages/dev/issue-template-task-update-with-upstream.md b/htdocs/pages/dev/issue-template-task-update-with-upstream.md
similarity index 100%
rename from pages/dev/issue-template-task-update-with-upstream.md
rename to htdocs/pages/dev/issue-template-task-update-with-upstream.md
diff --git a/pages/dev/issue-template-task.md b/htdocs/pages/dev/issue-template-task.md
similarity index 100%
rename from pages/dev/issue-template-task.md
rename to htdocs/pages/dev/issue-template-task.md
diff --git a/pages/dev/merge-request-template.md b/htdocs/pages/dev/merge-request-template.md
similarity index 100%
rename from pages/dev/merge-request-template.md
rename to htdocs/pages/dev/merge-request-template.md
diff --git a/pages/dev/prepare/issue-cleaning.md b/htdocs/pages/dev/prepare/issue-cleaning.md
similarity index 100%
rename from pages/dev/prepare/issue-cleaning.md
rename to htdocs/pages/dev/prepare/issue-cleaning.md
diff --git a/pages/dev/prepare/issue-triage.md b/htdocs/pages/dev/prepare/issue-triage.md
similarity index 100%
rename from pages/dev/prepare/issue-triage.md
rename to htdocs/pages/dev/prepare/issue-triage.md
diff --git a/pages/dev/prepare/planification.md b/htdocs/pages/dev/prepare/planification.md
similarity index 100%
rename from pages/dev/prepare/planification.md
rename to htdocs/pages/dev/prepare/planification.md
diff --git a/pages/dev/prepare/priorisation.md b/htdocs/pages/dev/prepare/priorisation.md
similarity index 100%
rename from pages/dev/prepare/priorisation.md
rename to htdocs/pages/dev/prepare/priorisation.md
diff --git a/pages/dev/prepare/sprint.md b/htdocs/pages/dev/prepare/sprint.md
similarity index 100%
rename from pages/dev/prepare/sprint.md
rename to htdocs/pages/dev/prepare/sprint.md
diff --git a/pages/dev/release/annoucement.md b/htdocs/pages/dev/release/annoucement.md
similarity index 100%
rename from pages/dev/release/annoucement.md
rename to htdocs/pages/dev/release/annoucement.md
diff --git a/pages/dev/release/closing-the-sprint.md b/htdocs/pages/dev/release/closing-the-sprint.md
similarity index 100%
rename from pages/dev/release/closing-the-sprint.md
rename to htdocs/pages/dev/release/closing-the-sprint.md
diff --git a/pages/dev/release/prepare-code-for-release.md b/htdocs/pages/dev/release/prepare-code-for-release.md
similarity index 100%
rename from pages/dev/release/prepare-code-for-release.md
rename to htdocs/pages/dev/release/prepare-code-for-release.md
diff --git a/pages/dev/release/release-note.md b/htdocs/pages/dev/release/release-note.md
similarity index 100%
rename from pages/dev/release/release-note.md
rename to htdocs/pages/dev/release/release-note.md
diff --git a/pages/dev/test/run-test-build.md b/htdocs/pages/dev/test/run-test-build.md
similarity index 100%
rename from pages/dev/test/run-test-build.md
rename to htdocs/pages/dev/test/run-test-build.md
diff --git a/pages/dev/test/test-session.md b/htdocs/pages/dev/test/test-session.md
similarity index 100%
rename from pages/dev/test/test-session.md
rename to htdocs/pages/dev/test/test-session.md
diff --git a/pages/development-process.md b/htdocs/pages/development-process.md
similarity index 100%
rename from pages/development-process.md
rename to htdocs/pages/development-process.md
diff --git a/pages/devices.html b/htdocs/pages/devices.html
similarity index 100%
rename from pages/devices.html
rename to htdocs/pages/devices.html
diff --git a/pages/disclaimer.md b/htdocs/pages/disclaimer.md
similarity index 100%
rename from pages/disclaimer.md
rename to htdocs/pages/disclaimer.md
diff --git a/pages/docker-command-details.md b/htdocs/pages/docker-command-details.md
similarity index 100%
rename from pages/docker-command-details.md
rename to htdocs/pages/docker-command-details.md
diff --git a/pages/easy-installer-contribute.md b/htdocs/pages/easy-installer-contribute.md
similarity index 100%
rename from pages/easy-installer-contribute.md
rename to htdocs/pages/easy-installer-contribute.md
diff --git a/pages/easy-installer-faq.md b/htdocs/pages/easy-installer-faq.md
similarity index 100%
rename from pages/easy-installer-faq.md
rename to htdocs/pages/easy-installer-faq.md
diff --git a/pages/easy-installer-ubuntu.md b/htdocs/pages/easy-installer-ubuntu.md
similarity index 100%
rename from pages/easy-installer-ubuntu.md
rename to htdocs/pages/easy-installer-ubuntu.md
diff --git a/pages/easy-installer-windows.md b/htdocs/pages/easy-installer-windows.md
similarity index 100%
rename from pages/easy-installer-windows.md
rename to htdocs/pages/easy-installer-windows.md
diff --git a/pages/easy-installer.md b/htdocs/pages/easy-installer.md
similarity index 100%
rename from pages/easy-installer.md
rename to htdocs/pages/easy-installer.md
diff --git a/pages/enable-usb-debugging.md b/htdocs/pages/enable-usb-debugging.md
similarity index 100%
rename from pages/enable-usb-debugging.md
rename to htdocs/pages/enable-usb-debugging.md
diff --git a/pages/extracting-proprietary-blobs.md b/htdocs/pages/extracting-proprietary-blobs.md
similarity index 100%
rename from pages/extracting-proprietary-blobs.md
rename to htdocs/pages/extracting-proprietary-blobs.md
diff --git a/pages/factory-reset.md b/htdocs/pages/factory-reset.md
similarity index 100%
rename from pages/factory-reset.md
rename to htdocs/pages/factory-reset.md
diff --git a/pages/faq.md b/htdocs/pages/faq.md
similarity index 99%
rename from pages/faq.md
rename to htdocs/pages/faq.md
index 84ca3e61f23db06517216921306118c77e540e41..fbb6b65ea570fc3efde3b1faf4cbe9e4982c1c27 100644
--- a/pages/faq.md
+++ b/htdocs/pages/faq.md
@@ -92,7 +92,7 @@ We had to change our name for legal reasons [as explained here](https://www.indi
/e/ is not that bad: it is singular, so it stays in mind. If you look for "/e/OS" or "/e/ OS" in search engines you find us immediately.
-Howver it's true that if you type /e/ in the browser search bar, it searches for a file called "e" in your root filesystem!
+However it's true that if you type /e/ in the browser search bar, it searches for a file called "e" in your root filesystem!
Most probably we will stick with /e/OS for the operating system itself, at least for a while, but we will probably introduce a new and more convenient name for the products built on /e/OS.
diff --git a/pages/how-to-enable-tasks-sync.md b/htdocs/pages/how-to-enable-tasks-sync.md
similarity index 100%
rename from pages/how-to-enable-tasks-sync.md
rename to htdocs/pages/how-to-enable-tasks-sync.md
diff --git a/pages/how-to-sync-new-ecloud-calendars.md b/htdocs/pages/how-to-sync-new-ecloud-calendars.md
similarity index 100%
rename from pages/how-to-sync-new-ecloud-calendars.md
rename to htdocs/pages/how-to-sync-new-ecloud-calendars.md
diff --git a/pages/how-to-update-e.md b/htdocs/pages/how-to-update-e.md
similarity index 100%
rename from pages/how-to-update-e.md
rename to htdocs/pages/how-to-update-e.md
diff --git a/pages/how-to-use-weblate.md b/htdocs/pages/how-to-use-weblate.md
similarity index 100%
rename from pages/how-to-use-weblate.md
rename to htdocs/pages/how-to-use-weblate.md
diff --git a/pages/how-tos.md b/htdocs/pages/how-tos.md
similarity index 100%
rename from pages/how-tos.md
rename to htdocs/pages/how-tos.md
diff --git a/pages/howtos/2fa.md b/htdocs/pages/howtos/2fa.md
similarity index 100%
rename from pages/howtos/2fa.md
rename to htdocs/pages/howtos/2fa.md
diff --git a/pages/howtos/additional-ecloud-apps.md b/htdocs/pages/howtos/additional-ecloud-apps.md
similarity index 100%
rename from pages/howtos/additional-ecloud-apps.md
rename to htdocs/pages/howtos/additional-ecloud-apps.md
diff --git a/pages/howtos/change-recovery-address.md b/htdocs/pages/howtos/change-recovery-address.md
similarity index 100%
rename from pages/howtos/change-recovery-address.md
rename to htdocs/pages/howtos/change-recovery-address.md
diff --git a/pages/howtos/migration-suggestions.md b/htdocs/pages/howtos/migration-suggestions.md
similarity index 100%
rename from pages/howtos/migration-suggestions.md
rename to htdocs/pages/howtos/migration-suggestions.md
diff --git a/pages/info/2e.md b/htdocs/pages/info/2e.md
similarity index 100%
rename from pages/info/2e.md
rename to htdocs/pages/info/2e.md
diff --git a/pages/info/Amber.md b/htdocs/pages/info/Amber.md
similarity index 100%
rename from pages/info/Amber.md
rename to htdocs/pages/info/Amber.md
diff --git a/pages/info/FP2.md b/htdocs/pages/info/FP2.md
similarity index 100%
rename from pages/info/FP2.md
rename to htdocs/pages/info/FP2.md
diff --git a/pages/info/FP3.md b/htdocs/pages/info/FP3.md
similarity index 100%
rename from pages/info/FP3.md
rename to htdocs/pages/info/FP3.md
diff --git a/pages/info/I01WD.md b/htdocs/pages/info/I01WD.md
similarity index 100%
rename from pages/info/I01WD.md
rename to htdocs/pages/info/I01WD.md
diff --git a/pages/info/RMX1801.md b/htdocs/pages/info/RMX1801.md
similarity index 100%
rename from pages/info/RMX1801.md
rename to htdocs/pages/info/RMX1801.md
diff --git a/pages/info/X00TD.md b/htdocs/pages/info/X00TD.md
similarity index 100%
rename from pages/info/X00TD.md
rename to htdocs/pages/info/X00TD.md
diff --git a/pages/info/X01BD.md b/htdocs/pages/info/X01BD.md
similarity index 100%
rename from pages/info/X01BD.md
rename to htdocs/pages/info/X01BD.md
diff --git a/pages/info/YTX703F.md b/htdocs/pages/info/YTX703F.md
similarity index 100%
rename from pages/info/YTX703F.md
rename to htdocs/pages/info/YTX703F.md
diff --git a/pages/info/YTX703L.md b/htdocs/pages/info/YTX703L.md
similarity index 100%
rename from pages/info/YTX703L.md
rename to htdocs/pages/info/YTX703L.md
diff --git a/pages/info/a3xelte.md b/htdocs/pages/info/a3xelte.md
similarity index 100%
rename from pages/info/a3xelte.md
rename to htdocs/pages/info/a3xelte.md
diff --git a/pages/info/a5xelte.md b/htdocs/pages/info/a5xelte.md
similarity index 100%
rename from pages/info/a5xelte.md
rename to htdocs/pages/info/a5xelte.md
diff --git a/pages/info/a5y17lte.md b/htdocs/pages/info/a5y17lte.md
similarity index 100%
rename from pages/info/a5y17lte.md
rename to htdocs/pages/info/a5y17lte.md
diff --git a/pages/info/a7y17lte.md b/htdocs/pages/info/a7y17lte.md
similarity index 100%
rename from pages/info/a7y17lte.md
rename to htdocs/pages/info/a7y17lte.md
diff --git a/pages/info/addison.md b/htdocs/pages/info/addison.md
similarity index 100%
rename from pages/info/addison.md
rename to htdocs/pages/info/addison.md
diff --git a/pages/info/albus.md b/htdocs/pages/info/albus.md
similarity index 100%
rename from pages/info/albus.md
rename to htdocs/pages/info/albus.md
diff --git a/pages/info/angler.md b/htdocs/pages/info/angler.md
similarity index 100%
rename from pages/info/angler.md
rename to htdocs/pages/info/angler.md
diff --git a/pages/info/athene.md b/htdocs/pages/info/athene.md
similarity index 100%
rename from pages/info/athene.md
rename to htdocs/pages/info/athene.md
diff --git a/pages/info/axon7.md b/htdocs/pages/info/axon7.md
similarity index 100%
rename from pages/info/axon7.md
rename to htdocs/pages/info/axon7.md
diff --git a/pages/info/bacon.md b/htdocs/pages/info/bacon.md
similarity index 100%
rename from pages/info/bacon.md
rename to htdocs/pages/info/bacon.md
diff --git a/pages/info/bardock.md b/htdocs/pages/info/bardock.md
similarity index 100%
rename from pages/info/bardock.md
rename to htdocs/pages/info/bardock.md
diff --git a/pages/info/bardockpro.md b/htdocs/pages/info/bardockpro.md
similarity index 100%
rename from pages/info/bardockpro.md
rename to htdocs/pages/info/bardockpro.md
diff --git a/pages/info/beryllium.md b/htdocs/pages/info/beryllium.md
similarity index 100%
rename from pages/info/beryllium.md
rename to htdocs/pages/info/beryllium.md
diff --git a/pages/info/bullhead.md b/htdocs/pages/info/bullhead.md
similarity index 100%
rename from pages/info/bullhead.md
rename to htdocs/pages/info/bullhead.md
diff --git a/pages/info/cancro.md b/htdocs/pages/info/cancro.md
similarity index 100%
rename from pages/info/cancro.md
rename to htdocs/pages/info/cancro.md
diff --git a/pages/info/capricorn.md b/htdocs/pages/info/capricorn.md
similarity index 100%
rename from pages/info/capricorn.md
rename to htdocs/pages/info/capricorn.md
diff --git a/pages/info/cheeseburger.md b/htdocs/pages/info/cheeseburger.md
similarity index 100%
rename from pages/info/cheeseburger.md
rename to htdocs/pages/info/cheeseburger.md
diff --git a/pages/info/chef.md b/htdocs/pages/info/chef.md
similarity index 100%
rename from pages/info/chef.md
rename to htdocs/pages/info/chef.md
diff --git a/pages/info/cheryl.md b/htdocs/pages/info/cheryl.md
similarity index 100%
rename from pages/info/cheryl.md
rename to htdocs/pages/info/cheryl.md
diff --git a/pages/info/chiron.md b/htdocs/pages/info/chiron.md
similarity index 100%
rename from pages/info/chiron.md
rename to htdocs/pages/info/chiron.md
diff --git a/pages/info/condor.md b/htdocs/pages/info/condor.md
similarity index 100%
rename from pages/info/condor.md
rename to htdocs/pages/info/condor.md
diff --git a/pages/info/crackling.md b/htdocs/pages/info/crackling.md
similarity index 100%
rename from pages/info/crackling.md
rename to htdocs/pages/info/crackling.md
diff --git a/pages/info/crownlte.md b/htdocs/pages/info/crownlte.md
similarity index 100%
rename from pages/info/crownlte.md
rename to htdocs/pages/info/crownlte.md
diff --git a/pages/info/d802.md b/htdocs/pages/info/d802.md
similarity index 100%
rename from pages/info/d802.md
rename to htdocs/pages/info/d802.md
diff --git a/pages/info/d855.md b/htdocs/pages/info/d855.md
similarity index 100%
rename from pages/info/d855.md
rename to htdocs/pages/info/d855.md
diff --git a/pages/info/dipper.md b/htdocs/pages/info/dipper.md
similarity index 100%
rename from pages/info/dipper.md
rename to htdocs/pages/info/dipper.md
diff --git a/pages/info/discovery.md b/htdocs/pages/info/discovery.md
similarity index 100%
rename from pages/info/discovery.md
rename to htdocs/pages/info/discovery.md
diff --git a/pages/info/dream2lte.md b/htdocs/pages/info/dream2lte.md
similarity index 100%
rename from pages/info/dream2lte.md
rename to htdocs/pages/info/dream2lte.md
diff --git a/pages/info/dreamlte.md b/htdocs/pages/info/dreamlte.md
similarity index 100%
rename from pages/info/dreamlte.md
rename to htdocs/pages/info/dreamlte.md
diff --git a/pages/info/dumpling.md b/htdocs/pages/info/dumpling.md
similarity index 100%
rename from pages/info/dumpling.md
rename to htdocs/pages/info/dumpling.md
diff --git a/pages/info/enchilada.md b/htdocs/pages/info/enchilada.md
similarity index 100%
rename from pages/info/enchilada.md
rename to htdocs/pages/info/enchilada.md
diff --git a/pages/info/ether.md b/htdocs/pages/info/ether.md
similarity index 100%
rename from pages/info/ether.md
rename to htdocs/pages/info/ether.md
diff --git a/pages/info/evert.md b/htdocs/pages/info/evert.md
similarity index 100%
rename from pages/info/evert.md
rename to htdocs/pages/info/evert.md
diff --git a/pages/info/f1f.md b/htdocs/pages/info/f1f.md
similarity index 100%
rename from pages/info/f1f.md
rename to htdocs/pages/info/f1f.md
diff --git a/pages/info/fajita.md b/htdocs/pages/info/fajita.md
similarity index 100%
rename from pages/info/fajita.md
rename to htdocs/pages/info/fajita.md
diff --git a/pages/info/falcon.md b/htdocs/pages/info/falcon.md
similarity index 100%
rename from pages/info/falcon.md
rename to htdocs/pages/info/falcon.md
diff --git a/pages/info/find7.md b/htdocs/pages/info/find7.md
similarity index 100%
rename from pages/info/find7.md
rename to htdocs/pages/info/find7.md
diff --git a/pages/info/gemini.md b/htdocs/pages/info/gemini.md
similarity index 100%
rename from pages/info/gemini.md
rename to htdocs/pages/info/gemini.md
diff --git a/pages/info/ginkgo.md b/htdocs/pages/info/ginkgo.md
similarity index 100%
rename from pages/info/ginkgo.md
rename to htdocs/pages/info/ginkgo.md
diff --git a/pages/info/griffin.md b/htdocs/pages/info/griffin.md
similarity index 100%
rename from pages/info/griffin.md
rename to htdocs/pages/info/griffin.md
diff --git a/pages/info/gs290.md b/htdocs/pages/info/gs290.md
similarity index 100%
rename from pages/info/gs290.md
rename to htdocs/pages/info/gs290.md
diff --git a/pages/info/gts210vewifi.md b/htdocs/pages/info/gts210vewifi.md
similarity index 100%
rename from pages/info/gts210vewifi.md
rename to htdocs/pages/info/gts210vewifi.md
diff --git a/pages/info/gts28vewifi.md b/htdocs/pages/info/gts28vewifi.md
similarity index 100%
rename from pages/info/gts28vewifi.md
rename to htdocs/pages/info/gts28vewifi.md
diff --git a/pages/info/gts4lvwifi.md b/htdocs/pages/info/gts4lvwifi.md
similarity index 100%
rename from pages/info/gts4lvwifi.md
rename to htdocs/pages/info/gts4lvwifi.md
diff --git a/pages/info/guacamole.md b/htdocs/pages/info/guacamole.md
similarity index 100%
rename from pages/info/guacamole.md
rename to htdocs/pages/info/guacamole.md
diff --git a/pages/info/guacamoleb.md b/htdocs/pages/info/guacamoleb.md
similarity index 100%
rename from pages/info/guacamoleb.md
rename to htdocs/pages/info/guacamoleb.md
diff --git a/pages/info/h850.md b/htdocs/pages/info/h850.md
similarity index 100%
rename from pages/info/h850.md
rename to htdocs/pages/info/h850.md
diff --git a/pages/info/h990.md b/htdocs/pages/info/h990.md
similarity index 100%
rename from pages/info/h990.md
rename to htdocs/pages/info/h990.md
diff --git a/pages/info/ha3g.md b/htdocs/pages/info/ha3g.md
similarity index 100%
rename from pages/info/ha3g.md
rename to htdocs/pages/info/ha3g.md
diff --git a/pages/info/ham.md b/htdocs/pages/info/ham.md
similarity index 100%
rename from pages/info/ham.md
rename to htdocs/pages/info/ham.md
diff --git a/pages/info/hammerhead.md b/htdocs/pages/info/hammerhead.md
similarity index 100%
rename from pages/info/hammerhead.md
rename to htdocs/pages/info/hammerhead.md
diff --git a/pages/info/harpia.md b/htdocs/pages/info/harpia.md
similarity index 100%
rename from pages/info/harpia.md
rename to htdocs/pages/info/harpia.md
diff --git a/pages/info/hero2lte.md b/htdocs/pages/info/hero2lte.md
similarity index 100%
rename from pages/info/hero2lte.md
rename to htdocs/pages/info/hero2lte.md
diff --git a/pages/info/herolte.md b/htdocs/pages/info/herolte.md
similarity index 100%
rename from pages/info/herolte.md
rename to htdocs/pages/info/herolte.md
diff --git a/pages/info/hiaeuhl.md b/htdocs/pages/info/hiaeuhl.md
similarity index 100%
rename from pages/info/hiaeuhl.md
rename to htdocs/pages/info/hiaeuhl.md
diff --git a/pages/info/hlte.md b/htdocs/pages/info/hlte.md
similarity index 100%
rename from pages/info/hlte.md
rename to htdocs/pages/info/hlte.md
diff --git a/pages/info/i9300.md b/htdocs/pages/info/i9300.md
similarity index 100%
rename from pages/info/i9300.md
rename to htdocs/pages/info/i9300.md
diff --git a/pages/info/i9305.md b/htdocs/pages/info/i9305.md
similarity index 100%
rename from pages/info/i9305.md
rename to htdocs/pages/info/i9305.md
diff --git a/pages/info/j53gxx.md b/htdocs/pages/info/j53gxx.md
similarity index 100%
rename from pages/info/j53gxx.md
rename to htdocs/pages/info/j53gxx.md
diff --git a/pages/info/j5lte.md b/htdocs/pages/info/j5lte.md
similarity index 100%
rename from pages/info/j5lte.md
rename to htdocs/pages/info/j5lte.md
diff --git a/pages/info/j5ltechn.md b/htdocs/pages/info/j5ltechn.md
similarity index 100%
rename from pages/info/j5ltechn.md
rename to htdocs/pages/info/j5ltechn.md
diff --git a/pages/info/j5nlte.md b/htdocs/pages/info/j5nlte.md
similarity index 100%
rename from pages/info/j5nlte.md
rename to htdocs/pages/info/j5nlte.md
diff --git a/pages/info/j7elte.md b/htdocs/pages/info/j7elte.md
similarity index 100%
rename from pages/info/j7elte.md
rename to htdocs/pages/info/j7elte.md
diff --git a/pages/info/jactivelte.md b/htdocs/pages/info/jactivelte.md
similarity index 100%
rename from pages/info/jactivelte.md
rename to htdocs/pages/info/jactivelte.md
diff --git a/pages/info/jalebi.md b/htdocs/pages/info/jalebi.md
similarity index 100%
rename from pages/info/jalebi.md
rename to htdocs/pages/info/jalebi.md
diff --git a/pages/info/jasmine_sprout.md b/htdocs/pages/info/jasmine_sprout.md
similarity index 100%
rename from pages/info/jasmine_sprout.md
rename to htdocs/pages/info/jasmine_sprout.md
diff --git a/pages/info/jason.md b/htdocs/pages/info/jason.md
similarity index 100%
rename from pages/info/jason.md
rename to htdocs/pages/info/jason.md
diff --git a/pages/info/jfltexx.md b/htdocs/pages/info/jfltexx.md
similarity index 100%
rename from pages/info/jfltexx.md
rename to htdocs/pages/info/jfltexx.md
diff --git a/pages/info/kccat6.md b/htdocs/pages/info/kccat6.md
similarity index 100%
rename from pages/info/kccat6.md
rename to htdocs/pages/info/kccat6.md
diff --git a/pages/info/kenzo.md b/htdocs/pages/info/kenzo.md
similarity index 100%
rename from pages/info/kenzo.md
rename to htdocs/pages/info/kenzo.md
diff --git a/pages/info/kirin.md b/htdocs/pages/info/kirin.md
similarity index 100%
rename from pages/info/kirin.md
rename to htdocs/pages/info/kirin.md
diff --git a/pages/info/kiwi.md b/htdocs/pages/info/kiwi.md
similarity index 100%
rename from pages/info/kiwi.md
rename to htdocs/pages/info/kiwi.md
diff --git a/pages/info/klte.md b/htdocs/pages/info/klte.md
similarity index 100%
rename from pages/info/klte.md
rename to htdocs/pages/info/klte.md
diff --git a/pages/info/klteactivexx.md b/htdocs/pages/info/klteactivexx.md
similarity index 100%
rename from pages/info/klteactivexx.md
rename to htdocs/pages/info/klteactivexx.md
diff --git a/pages/info/kuntao.md b/htdocs/pages/info/kuntao.md
similarity index 100%
rename from pages/info/kuntao.md
rename to htdocs/pages/info/kuntao.md
diff --git a/pages/info/lake.md b/htdocs/pages/info/lake.md
similarity index 100%
rename from pages/info/lake.md
rename to htdocs/pages/info/lake.md
diff --git a/pages/info/land.md b/htdocs/pages/info/land.md
similarity index 100%
rename from pages/info/land.md
rename to htdocs/pages/info/land.md
diff --git a/pages/info/lavender.md b/htdocs/pages/info/lavender.md
similarity index 100%
rename from pages/info/lavender.md
rename to htdocs/pages/info/lavender.md
diff --git a/pages/info/libra.md b/htdocs/pages/info/libra.md
similarity index 100%
rename from pages/info/libra.md
rename to htdocs/pages/info/libra.md
diff --git a/pages/info/lilac.md b/htdocs/pages/info/lilac.md
similarity index 100%
rename from pages/info/lilac.md
rename to htdocs/pages/info/lilac.md
diff --git a/pages/info/lithium.md b/htdocs/pages/info/lithium.md
similarity index 100%
rename from pages/info/lithium.md
rename to htdocs/pages/info/lithium.md
diff --git a/pages/info/lux.md b/htdocs/pages/info/lux.md
similarity index 100%
rename from pages/info/lux.md
rename to htdocs/pages/info/lux.md
diff --git a/pages/info/m8.md b/htdocs/pages/info/m8.md
similarity index 100%
rename from pages/info/m8.md
rename to htdocs/pages/info/m8.md
diff --git a/pages/info/m8d.md b/htdocs/pages/info/m8d.md
similarity index 100%
rename from pages/info/m8d.md
rename to htdocs/pages/info/m8d.md
diff --git a/pages/info/mako.md b/htdocs/pages/info/mako.md
similarity index 100%
rename from pages/info/mako.md
rename to htdocs/pages/info/mako.md
diff --git a/pages/info/marlin.md b/htdocs/pages/info/marlin.md
similarity index 100%
rename from pages/info/marlin.md
rename to htdocs/pages/info/marlin.md
diff --git a/pages/info/mata.md b/htdocs/pages/info/mata.md
similarity index 100%
rename from pages/info/mata.md
rename to htdocs/pages/info/mata.md
diff --git a/pages/info/merlin.md b/htdocs/pages/info/merlin.md
similarity index 100%
rename from pages/info/merlin.md
rename to htdocs/pages/info/merlin.md
diff --git a/pages/info/mermaid.md b/htdocs/pages/info/mermaid.md
similarity index 100%
rename from pages/info/mermaid.md
rename to htdocs/pages/info/mermaid.md
diff --git a/pages/info/mido.md b/htdocs/pages/info/mido.md
similarity index 100%
rename from pages/info/mido.md
rename to htdocs/pages/info/mido.md
diff --git a/pages/info/n7100.md b/htdocs/pages/info/n7100.md
similarity index 100%
rename from pages/info/n7100.md
rename to htdocs/pages/info/n7100.md
diff --git a/pages/info/nash.md b/htdocs/pages/info/nash.md
similarity index 100%
rename from pages/info/nash.md
rename to htdocs/pages/info/nash.md
diff --git a/pages/info/natrium.md b/htdocs/pages/info/natrium.md
similarity index 100%
rename from pages/info/natrium.md
rename to htdocs/pages/info/natrium.md
diff --git a/pages/info/nx563j.md b/htdocs/pages/info/nx563j.md
similarity index 100%
rename from pages/info/nx563j.md
rename to htdocs/pages/info/nx563j.md
diff --git a/pages/info/olimex.md b/htdocs/pages/info/olimex.md
similarity index 100%
rename from pages/info/olimex.md
rename to htdocs/pages/info/olimex.md
diff --git a/pages/info/onclite.md b/htdocs/pages/info/onclite.md
similarity index 100%
rename from pages/info/onclite.md
rename to htdocs/pages/info/onclite.md
diff --git a/pages/info/oneplus2.md b/htdocs/pages/info/oneplus2.md
similarity index 100%
rename from pages/info/oneplus2.md
rename to htdocs/pages/info/oneplus2.md
diff --git a/pages/info/oneplus3.md b/htdocs/pages/info/oneplus3.md
similarity index 100%
rename from pages/info/oneplus3.md
rename to htdocs/pages/info/oneplus3.md
diff --git a/pages/info/onyx.md b/htdocs/pages/info/onyx.md
similarity index 100%
rename from pages/info/onyx.md
rename to htdocs/pages/info/onyx.md
diff --git a/pages/info/osprey.md b/htdocs/pages/info/osprey.md
similarity index 100%
rename from pages/info/osprey.md
rename to htdocs/pages/info/osprey.md
diff --git a/pages/info/payton.md b/htdocs/pages/info/payton.md
similarity index 100%
rename from pages/info/payton.md
rename to htdocs/pages/info/payton.md
diff --git a/pages/info/peregrine.md b/htdocs/pages/info/peregrine.md
similarity index 100%
rename from pages/info/peregrine.md
rename to htdocs/pages/info/peregrine.md
diff --git a/pages/info/pinebook.md b/htdocs/pages/info/pinebook.md
similarity index 100%
rename from pages/info/pinebook.md
rename to htdocs/pages/info/pinebook.md
diff --git a/pages/info/pioneer.md b/htdocs/pages/info/pioneer.md
similarity index 100%
rename from pages/info/pioneer.md
rename to htdocs/pages/info/pioneer.md
diff --git a/pages/info/pme.md b/htdocs/pages/info/pme.md
similarity index 100%
rename from pages/info/pme.md
rename to htdocs/pages/info/pme.md
diff --git a/pages/info/polaris.md b/htdocs/pages/info/polaris.md
similarity index 100%
rename from pages/info/polaris.md
rename to htdocs/pages/info/polaris.md
diff --git a/pages/info/r5.md b/htdocs/pages/info/r5.md
similarity index 100%
rename from pages/info/r5.md
rename to htdocs/pages/info/r5.md
diff --git a/pages/info/r7plus.md b/htdocs/pages/info/r7plus.md
similarity index 100%
rename from pages/info/r7plus.md
rename to htdocs/pages/info/r7plus.md
diff --git a/pages/info/r7sf.md b/htdocs/pages/info/r7sf.md
similarity index 100%
rename from pages/info/r7sf.md
rename to htdocs/pages/info/r7sf.md
diff --git a/pages/info/river.md b/htdocs/pages/info/river.md
similarity index 100%
rename from pages/info/river.md
rename to htdocs/pages/info/river.md
diff --git a/pages/info/s2.md b/htdocs/pages/info/s2.md
similarity index 100%
rename from pages/info/s2.md
rename to htdocs/pages/info/s2.md
diff --git a/pages/info/s3ve3gds.md b/htdocs/pages/info/s3ve3gds.md
similarity index 100%
rename from pages/info/s3ve3gds.md
rename to htdocs/pages/info/s3ve3gds.md
diff --git a/pages/info/s3ve3gjv.md b/htdocs/pages/info/s3ve3gjv.md
similarity index 100%
rename from pages/info/s3ve3gjv.md
rename to htdocs/pages/info/s3ve3gjv.md
diff --git a/pages/info/s3ve3gxx.md b/htdocs/pages/info/s3ve3gxx.md
similarity index 100%
rename from pages/info/s3ve3gxx.md
rename to htdocs/pages/info/s3ve3gxx.md
diff --git a/pages/info/s5neolte.md b/htdocs/pages/info/s5neolte.md
similarity index 100%
rename from pages/info/s5neolte.md
rename to htdocs/pages/info/s5neolte.md
diff --git a/pages/info/sagit.md b/htdocs/pages/info/sagit.md
similarity index 100%
rename from pages/info/sagit.md
rename to htdocs/pages/info/sagit.md
diff --git a/pages/info/sailfish.md b/htdocs/pages/info/sailfish.md
similarity index 100%
rename from pages/info/sailfish.md
rename to htdocs/pages/info/sailfish.md
diff --git a/pages/info/santoni.md b/htdocs/pages/info/santoni.md
similarity index 100%
rename from pages/info/santoni.md
rename to htdocs/pages/info/santoni.md
diff --git a/pages/info/scorpio.md b/htdocs/pages/info/scorpio.md
similarity index 100%
rename from pages/info/scorpio.md
rename to htdocs/pages/info/scorpio.md
diff --git a/pages/info/serrano3gxx.md b/htdocs/pages/info/serrano3gxx.md
similarity index 100%
rename from pages/info/serrano3gxx.md
rename to htdocs/pages/info/serrano3gxx.md
diff --git a/pages/info/serranodsdd.md b/htdocs/pages/info/serranodsdd.md
similarity index 100%
rename from pages/info/serranodsdd.md
rename to htdocs/pages/info/serranodsdd.md
diff --git a/pages/info/serranoltexx.md b/htdocs/pages/info/serranoltexx.md
similarity index 100%
rename from pages/info/serranoltexx.md
rename to htdocs/pages/info/serranoltexx.md
diff --git a/pages/info/shamu.md b/htdocs/pages/info/shamu.md
similarity index 100%
rename from pages/info/shamu.md
rename to htdocs/pages/info/shamu.md
diff --git a/pages/info/star2lte.md b/htdocs/pages/info/star2lte.md
similarity index 100%
rename from pages/info/star2lte.md
rename to htdocs/pages/info/star2lte.md
diff --git a/pages/info/starlte.md b/htdocs/pages/info/starlte.md
similarity index 100%
rename from pages/info/starlte.md
rename to htdocs/pages/info/starlte.md
diff --git a/pages/info/sumire.md b/htdocs/pages/info/sumire.md
similarity index 100%
rename from pages/info/sumire.md
rename to htdocs/pages/info/sumire.md
diff --git a/pages/info/surnia.md b/htdocs/pages/info/surnia.md
similarity index 100%
rename from pages/info/surnia.md
rename to htdocs/pages/info/surnia.md
diff --git a/pages/info/suzuran.md b/htdocs/pages/info/suzuran.md
similarity index 100%
rename from pages/info/suzuran.md
rename to htdocs/pages/info/suzuran.md
diff --git a/pages/info/t0lte.md b/htdocs/pages/info/t0lte.md
similarity index 100%
rename from pages/info/t0lte.md
rename to htdocs/pages/info/t0lte.md
diff --git a/pages/info/taimen.md b/htdocs/pages/info/taimen.md
similarity index 100%
rename from pages/info/taimen.md
rename to htdocs/pages/info/taimen.md
diff --git a/pages/info/tissot.md b/htdocs/pages/info/tissot.md
similarity index 100%
rename from pages/info/tissot.md
rename to htdocs/pages/info/tissot.md
diff --git a/pages/info/titan.md b/htdocs/pages/info/titan.md
similarity index 100%
rename from pages/info/titan.md
rename to htdocs/pages/info/titan.md
diff --git a/pages/info/treltexx.md b/htdocs/pages/info/treltexx.md
similarity index 100%
rename from pages/info/treltexx.md
rename to htdocs/pages/info/treltexx.md
diff --git a/pages/info/twolip.md b/htdocs/pages/info/twolip.md
similarity index 100%
rename from pages/info/twolip.md
rename to htdocs/pages/info/twolip.md
diff --git a/pages/info/victara.md b/htdocs/pages/info/victara.md
similarity index 100%
rename from pages/info/victara.md
rename to htdocs/pages/info/victara.md
diff --git a/pages/info/violet.md b/htdocs/pages/info/violet.md
similarity index 100%
rename from pages/info/violet.md
rename to htdocs/pages/info/violet.md
diff --git a/pages/info/voyager.md b/htdocs/pages/info/voyager.md
similarity index 100%
rename from pages/info/voyager.md
rename to htdocs/pages/info/voyager.md
diff --git a/pages/info/wayne.md b/htdocs/pages/info/wayne.md
similarity index 100%
rename from pages/info/wayne.md
rename to htdocs/pages/info/wayne.md
diff --git a/pages/info/whyred.md b/htdocs/pages/info/whyred.md
similarity index 100%
rename from pages/info/whyred.md
rename to htdocs/pages/info/whyred.md
diff --git a/pages/info/wt88047.md b/htdocs/pages/info/wt88047.md
similarity index 100%
rename from pages/info/wt88047.md
rename to htdocs/pages/info/wt88047.md
diff --git a/pages/info/x2.md b/htdocs/pages/info/x2.md
similarity index 100%
rename from pages/info/x2.md
rename to htdocs/pages/info/x2.md
diff --git a/pages/info/z2_plus.md b/htdocs/pages/info/z2_plus.md
similarity index 100%
rename from pages/info/z2_plus.md
rename to htdocs/pages/info/z2_plus.md
diff --git a/pages/info/z3.md b/htdocs/pages/info/z3.md
similarity index 100%
rename from pages/info/z3.md
rename to htdocs/pages/info/z3.md
diff --git a/pages/info/z3c.md b/htdocs/pages/info/z3c.md
similarity index 100%
rename from pages/info/z3c.md
rename to htdocs/pages/info/z3c.md
diff --git a/pages/info/zangya.md b/htdocs/pages/info/zangya.md
similarity index 100%
rename from pages/info/zangya.md
rename to htdocs/pages/info/zangya.md
diff --git a/pages/info/zangyapro.md b/htdocs/pages/info/zangyapro.md
similarity index 100%
rename from pages/info/zangyapro.md
rename to htdocs/pages/info/zangyapro.md
diff --git a/pages/info/zenfone3.md b/htdocs/pages/info/zenfone3.md
similarity index 100%
rename from pages/info/zenfone3.md
rename to htdocs/pages/info/zenfone3.md
diff --git a/pages/info/zl1.md b/htdocs/pages/info/zl1.md
similarity index 100%
rename from pages/info/zl1.md
rename to htdocs/pages/info/zl1.md
diff --git a/pages/install-GSI.md b/htdocs/pages/install-GSI.md
similarity index 100%
rename from pages/install-GSI.md
rename to htdocs/pages/install-GSI.md
diff --git a/pages/install-adb-windows.md b/htdocs/pages/install-adb-windows.md
similarity index 100%
rename from pages/install-adb-windows.md
rename to htdocs/pages/install-adb-windows.md
diff --git a/pages/install-adb.md b/htdocs/pages/install-adb.md
similarity index 100%
rename from pages/install-adb.md
rename to htdocs/pages/install-adb.md
diff --git a/pages/install-heimdall.md b/htdocs/pages/install-heimdall.md
similarity index 100%
rename from pages/install-heimdall.md
rename to htdocs/pages/install-heimdall.md
diff --git a/pages/install-twrp.md b/htdocs/pages/install-twrp.md
similarity index 100%
rename from pages/install-twrp.md
rename to htdocs/pages/install-twrp.md
diff --git a/pages/install/2e.md b/htdocs/pages/install/2e.md
similarity index 100%
rename from pages/install/2e.md
rename to htdocs/pages/install/2e.md
diff --git a/pages/install/Amber.md b/htdocs/pages/install/Amber.md
similarity index 100%
rename from pages/install/Amber.md
rename to htdocs/pages/install/Amber.md
diff --git a/pages/install/FP2.md b/htdocs/pages/install/FP2.md
similarity index 100%
rename from pages/install/FP2.md
rename to htdocs/pages/install/FP2.md
diff --git a/pages/install/FP3.md b/htdocs/pages/install/FP3.md
similarity index 100%
rename from pages/install/FP3.md
rename to htdocs/pages/install/FP3.md
diff --git a/pages/install/I01WD.md b/htdocs/pages/install/I01WD.md
similarity index 100%
rename from pages/install/I01WD.md
rename to htdocs/pages/install/I01WD.md
diff --git a/pages/install/RMX1801.md b/htdocs/pages/install/RMX1801.md
similarity index 100%
rename from pages/install/RMX1801.md
rename to htdocs/pages/install/RMX1801.md
diff --git a/pages/install/X00TD.md b/htdocs/pages/install/X00TD.md
similarity index 100%
rename from pages/install/X00TD.md
rename to htdocs/pages/install/X00TD.md
diff --git a/pages/install/X01BD.md b/htdocs/pages/install/X01BD.md
similarity index 100%
rename from pages/install/X01BD.md
rename to htdocs/pages/install/X01BD.md
diff --git a/pages/install/YTX703F.md b/htdocs/pages/install/YTX703F.md
similarity index 100%
rename from pages/install/YTX703F.md
rename to htdocs/pages/install/YTX703F.md
diff --git a/pages/install/YTX703L.md b/htdocs/pages/install/YTX703L.md
similarity index 100%
rename from pages/install/YTX703L.md
rename to htdocs/pages/install/YTX703L.md
diff --git a/pages/install/a3xelte.md b/htdocs/pages/install/a3xelte.md
similarity index 100%
rename from pages/install/a3xelte.md
rename to htdocs/pages/install/a3xelte.md
diff --git a/pages/install/a5xelte.md b/htdocs/pages/install/a5xelte.md
similarity index 100%
rename from pages/install/a5xelte.md
rename to htdocs/pages/install/a5xelte.md
diff --git a/pages/install/a5y17lte.md b/htdocs/pages/install/a5y17lte.md
similarity index 100%
rename from pages/install/a5y17lte.md
rename to htdocs/pages/install/a5y17lte.md
diff --git a/pages/install/a7y17lte.md b/htdocs/pages/install/a7y17lte.md
similarity index 100%
rename from pages/install/a7y17lte.md
rename to htdocs/pages/install/a7y17lte.md
diff --git a/pages/install/addison.md b/htdocs/pages/install/addison.md
similarity index 100%
rename from pages/install/addison.md
rename to htdocs/pages/install/addison.md
diff --git a/pages/install/albus.md b/htdocs/pages/install/albus.md
similarity index 100%
rename from pages/install/albus.md
rename to htdocs/pages/install/albus.md
diff --git a/pages/install/angler.md b/htdocs/pages/install/angler.md
similarity index 100%
rename from pages/install/angler.md
rename to htdocs/pages/install/angler.md
diff --git a/pages/install/athene.md b/htdocs/pages/install/athene.md
similarity index 100%
rename from pages/install/athene.md
rename to htdocs/pages/install/athene.md
diff --git a/pages/install/axon7.md b/htdocs/pages/install/axon7.md
similarity index 100%
rename from pages/install/axon7.md
rename to htdocs/pages/install/axon7.md
diff --git a/pages/install/bacon.md b/htdocs/pages/install/bacon.md
similarity index 100%
rename from pages/install/bacon.md
rename to htdocs/pages/install/bacon.md
diff --git a/pages/install/bardock.md b/htdocs/pages/install/bardock.md
similarity index 100%
rename from pages/install/bardock.md
rename to htdocs/pages/install/bardock.md
diff --git a/pages/install/bardockpro.md b/htdocs/pages/install/bardockpro.md
similarity index 100%
rename from pages/install/bardockpro.md
rename to htdocs/pages/install/bardockpro.md
diff --git a/pages/install/beryllium.md b/htdocs/pages/install/beryllium.md
similarity index 100%
rename from pages/install/beryllium.md
rename to htdocs/pages/install/beryllium.md
diff --git a/pages/install/bullhead.md b/htdocs/pages/install/bullhead.md
similarity index 100%
rename from pages/install/bullhead.md
rename to htdocs/pages/install/bullhead.md
diff --git a/pages/install/cancro.md b/htdocs/pages/install/cancro.md
similarity index 100%
rename from pages/install/cancro.md
rename to htdocs/pages/install/cancro.md
diff --git a/pages/install/capricorn.md b/htdocs/pages/install/capricorn.md
similarity index 100%
rename from pages/install/capricorn.md
rename to htdocs/pages/install/capricorn.md
diff --git a/pages/install/cheeseburger.md b/htdocs/pages/install/cheeseburger.md
similarity index 100%
rename from pages/install/cheeseburger.md
rename to htdocs/pages/install/cheeseburger.md
diff --git a/pages/install/chef.md b/htdocs/pages/install/chef.md
similarity index 100%
rename from pages/install/chef.md
rename to htdocs/pages/install/chef.md
diff --git a/pages/install/cheryl.md b/htdocs/pages/install/cheryl.md
similarity index 100%
rename from pages/install/cheryl.md
rename to htdocs/pages/install/cheryl.md
diff --git a/pages/install/chiron.md b/htdocs/pages/install/chiron.md
similarity index 100%
rename from pages/install/chiron.md
rename to htdocs/pages/install/chiron.md
diff --git a/pages/install/condor.md b/htdocs/pages/install/condor.md
similarity index 100%
rename from pages/install/condor.md
rename to htdocs/pages/install/condor.md
diff --git a/pages/install/crackling.md b/htdocs/pages/install/crackling.md
similarity index 100%
rename from pages/install/crackling.md
rename to htdocs/pages/install/crackling.md
diff --git a/pages/install/crownlte.md b/htdocs/pages/install/crownlte.md
similarity index 100%
rename from pages/install/crownlte.md
rename to htdocs/pages/install/crownlte.md
diff --git a/pages/install/d802.md b/htdocs/pages/install/d802.md
similarity index 100%
rename from pages/install/d802.md
rename to htdocs/pages/install/d802.md
diff --git a/pages/install/d855.md b/htdocs/pages/install/d855.md
similarity index 100%
rename from pages/install/d855.md
rename to htdocs/pages/install/d855.md
diff --git a/pages/install/dipper.md b/htdocs/pages/install/dipper.md
similarity index 100%
rename from pages/install/dipper.md
rename to htdocs/pages/install/dipper.md
diff --git a/pages/install/discovery.md b/htdocs/pages/install/discovery.md
similarity index 100%
rename from pages/install/discovery.md
rename to htdocs/pages/install/discovery.md
diff --git a/pages/install/dream2lte.md b/htdocs/pages/install/dream2lte.md
similarity index 100%
rename from pages/install/dream2lte.md
rename to htdocs/pages/install/dream2lte.md
diff --git a/pages/install/dreamlte.md b/htdocs/pages/install/dreamlte.md
similarity index 100%
rename from pages/install/dreamlte.md
rename to htdocs/pages/install/dreamlte.md
diff --git a/pages/install/dumpling.md b/htdocs/pages/install/dumpling.md
similarity index 100%
rename from pages/install/dumpling.md
rename to htdocs/pages/install/dumpling.md
diff --git a/pages/install/enchilada.md b/htdocs/pages/install/enchilada.md
similarity index 100%
rename from pages/install/enchilada.md
rename to htdocs/pages/install/enchilada.md
diff --git a/pages/install/ether.md b/htdocs/pages/install/ether.md
similarity index 100%
rename from pages/install/ether.md
rename to htdocs/pages/install/ether.md
diff --git a/pages/install/evert.md b/htdocs/pages/install/evert.md
similarity index 100%
rename from pages/install/evert.md
rename to htdocs/pages/install/evert.md
diff --git a/pages/install/f1f.md b/htdocs/pages/install/f1f.md
similarity index 100%
rename from pages/install/f1f.md
rename to htdocs/pages/install/f1f.md
diff --git a/pages/install/fajita.md b/htdocs/pages/install/fajita.md
similarity index 100%
rename from pages/install/fajita.md
rename to htdocs/pages/install/fajita.md
diff --git a/pages/install/falcon.md b/htdocs/pages/install/falcon.md
similarity index 100%
rename from pages/install/falcon.md
rename to htdocs/pages/install/falcon.md
diff --git a/pages/install/find7.md b/htdocs/pages/install/find7.md
similarity index 100%
rename from pages/install/find7.md
rename to htdocs/pages/install/find7.md
diff --git a/pages/install/gemini.md b/htdocs/pages/install/gemini.md
similarity index 100%
rename from pages/install/gemini.md
rename to htdocs/pages/install/gemini.md
diff --git a/pages/install/ginkgo.md b/htdocs/pages/install/ginkgo.md
similarity index 100%
rename from pages/install/ginkgo.md
rename to htdocs/pages/install/ginkgo.md
diff --git a/pages/install/griffin.md b/htdocs/pages/install/griffin.md
similarity index 100%
rename from pages/install/griffin.md
rename to htdocs/pages/install/griffin.md
diff --git a/pages/install/gs290.md b/htdocs/pages/install/gs290.md
similarity index 100%
rename from pages/install/gs290.md
rename to htdocs/pages/install/gs290.md
diff --git a/pages/install/gts210vewifi.md b/htdocs/pages/install/gts210vewifi.md
similarity index 100%
rename from pages/install/gts210vewifi.md
rename to htdocs/pages/install/gts210vewifi.md
diff --git a/pages/install/gts28vewifi.md b/htdocs/pages/install/gts28vewifi.md
similarity index 100%
rename from pages/install/gts28vewifi.md
rename to htdocs/pages/install/gts28vewifi.md
diff --git a/pages/install/gts4lvwifi.md b/htdocs/pages/install/gts4lvwifi.md
similarity index 100%
rename from pages/install/gts4lvwifi.md
rename to htdocs/pages/install/gts4lvwifi.md
diff --git a/pages/install/guacamole.md b/htdocs/pages/install/guacamole.md
similarity index 100%
rename from pages/install/guacamole.md
rename to htdocs/pages/install/guacamole.md
diff --git a/pages/install/guacamoleb.md b/htdocs/pages/install/guacamoleb.md
similarity index 100%
rename from pages/install/guacamoleb.md
rename to htdocs/pages/install/guacamoleb.md
diff --git a/pages/install/h850.md b/htdocs/pages/install/h850.md
similarity index 100%
rename from pages/install/h850.md
rename to htdocs/pages/install/h850.md
diff --git a/pages/install/h990.md b/htdocs/pages/install/h990.md
similarity index 100%
rename from pages/install/h990.md
rename to htdocs/pages/install/h990.md
diff --git a/pages/install/ha3g.md b/htdocs/pages/install/ha3g.md
similarity index 100%
rename from pages/install/ha3g.md
rename to htdocs/pages/install/ha3g.md
diff --git a/pages/install/ham.md b/htdocs/pages/install/ham.md
similarity index 100%
rename from pages/install/ham.md
rename to htdocs/pages/install/ham.md
diff --git a/pages/install/hammerhead.md b/htdocs/pages/install/hammerhead.md
similarity index 100%
rename from pages/install/hammerhead.md
rename to htdocs/pages/install/hammerhead.md
diff --git a/pages/install/harpia.md b/htdocs/pages/install/harpia.md
similarity index 100%
rename from pages/install/harpia.md
rename to htdocs/pages/install/harpia.md
diff --git a/pages/install/hero2lte.md b/htdocs/pages/install/hero2lte.md
similarity index 100%
rename from pages/install/hero2lte.md
rename to htdocs/pages/install/hero2lte.md
diff --git a/pages/install/herolte.md b/htdocs/pages/install/herolte.md
similarity index 100%
rename from pages/install/herolte.md
rename to htdocs/pages/install/herolte.md
diff --git a/pages/install/hiaeuhl.md b/htdocs/pages/install/hiaeuhl.md
similarity index 100%
rename from pages/install/hiaeuhl.md
rename to htdocs/pages/install/hiaeuhl.md
diff --git a/pages/install/hlte.md b/htdocs/pages/install/hlte.md
similarity index 100%
rename from pages/install/hlte.md
rename to htdocs/pages/install/hlte.md
diff --git a/pages/install/i9300.md b/htdocs/pages/install/i9300.md
similarity index 100%
rename from pages/install/i9300.md
rename to htdocs/pages/install/i9300.md
diff --git a/pages/install/i9305.md b/htdocs/pages/install/i9305.md
similarity index 100%
rename from pages/install/i9305.md
rename to htdocs/pages/install/i9305.md
diff --git a/pages/install/j53gxx.md b/htdocs/pages/install/j53gxx.md
similarity index 100%
rename from pages/install/j53gxx.md
rename to htdocs/pages/install/j53gxx.md
diff --git a/pages/install/j5lte.md b/htdocs/pages/install/j5lte.md
similarity index 100%
rename from pages/install/j5lte.md
rename to htdocs/pages/install/j5lte.md
diff --git a/pages/install/j5ltechn.md b/htdocs/pages/install/j5ltechn.md
similarity index 100%
rename from pages/install/j5ltechn.md
rename to htdocs/pages/install/j5ltechn.md
diff --git a/pages/install/j5nlte.md b/htdocs/pages/install/j5nlte.md
similarity index 100%
rename from pages/install/j5nlte.md
rename to htdocs/pages/install/j5nlte.md
diff --git a/pages/install/j7elte.md b/htdocs/pages/install/j7elte.md
similarity index 100%
rename from pages/install/j7elte.md
rename to htdocs/pages/install/j7elte.md
diff --git a/pages/install/jactivelte.md b/htdocs/pages/install/jactivelte.md
similarity index 100%
rename from pages/install/jactivelte.md
rename to htdocs/pages/install/jactivelte.md
diff --git a/pages/install/jalebi.md b/htdocs/pages/install/jalebi.md
similarity index 100%
rename from pages/install/jalebi.md
rename to htdocs/pages/install/jalebi.md
diff --git a/pages/install/jasmine_sprout.md b/htdocs/pages/install/jasmine_sprout.md
similarity index 100%
rename from pages/install/jasmine_sprout.md
rename to htdocs/pages/install/jasmine_sprout.md
diff --git a/pages/install/jason.md b/htdocs/pages/install/jason.md
similarity index 100%
rename from pages/install/jason.md
rename to htdocs/pages/install/jason.md
diff --git a/pages/install/jfltexx.md b/htdocs/pages/install/jfltexx.md
similarity index 100%
rename from pages/install/jfltexx.md
rename to htdocs/pages/install/jfltexx.md
diff --git a/pages/install/kccat6.md b/htdocs/pages/install/kccat6.md
similarity index 100%
rename from pages/install/kccat6.md
rename to htdocs/pages/install/kccat6.md
diff --git a/pages/install/kenzo.md b/htdocs/pages/install/kenzo.md
similarity index 100%
rename from pages/install/kenzo.md
rename to htdocs/pages/install/kenzo.md
diff --git a/pages/install/kirin.md b/htdocs/pages/install/kirin.md
similarity index 100%
rename from pages/install/kirin.md
rename to htdocs/pages/install/kirin.md
diff --git a/pages/install/kiwi.md b/htdocs/pages/install/kiwi.md
similarity index 100%
rename from pages/install/kiwi.md
rename to htdocs/pages/install/kiwi.md
diff --git a/pages/install/klte.md b/htdocs/pages/install/klte.md
similarity index 100%
rename from pages/install/klte.md
rename to htdocs/pages/install/klte.md
diff --git a/pages/install/klteactivexx.md b/htdocs/pages/install/klteactivexx.md
similarity index 100%
rename from pages/install/klteactivexx.md
rename to htdocs/pages/install/klteactivexx.md
diff --git a/pages/install/kuntao.md b/htdocs/pages/install/kuntao.md
similarity index 100%
rename from pages/install/kuntao.md
rename to htdocs/pages/install/kuntao.md
diff --git a/pages/install/lake.md b/htdocs/pages/install/lake.md
similarity index 100%
rename from pages/install/lake.md
rename to htdocs/pages/install/lake.md
diff --git a/pages/install/land.md b/htdocs/pages/install/land.md
similarity index 100%
rename from pages/install/land.md
rename to htdocs/pages/install/land.md
diff --git a/pages/install/lavender.md b/htdocs/pages/install/lavender.md
similarity index 100%
rename from pages/install/lavender.md
rename to htdocs/pages/install/lavender.md
diff --git a/pages/install/libra.md b/htdocs/pages/install/libra.md
similarity index 100%
rename from pages/install/libra.md
rename to htdocs/pages/install/libra.md
diff --git a/pages/install/lilac.md b/htdocs/pages/install/lilac.md
similarity index 100%
rename from pages/install/lilac.md
rename to htdocs/pages/install/lilac.md
diff --git a/pages/install/lithium.md b/htdocs/pages/install/lithium.md
similarity index 100%
rename from pages/install/lithium.md
rename to htdocs/pages/install/lithium.md
diff --git a/pages/install/lux.md b/htdocs/pages/install/lux.md
similarity index 100%
rename from pages/install/lux.md
rename to htdocs/pages/install/lux.md
diff --git a/pages/install/m8.md b/htdocs/pages/install/m8.md
similarity index 100%
rename from pages/install/m8.md
rename to htdocs/pages/install/m8.md
diff --git a/pages/install/m8d.md b/htdocs/pages/install/m8d.md
similarity index 100%
rename from pages/install/m8d.md
rename to htdocs/pages/install/m8d.md
diff --git a/pages/install/mako.md b/htdocs/pages/install/mako.md
similarity index 100%
rename from pages/install/mako.md
rename to htdocs/pages/install/mako.md
diff --git a/pages/install/marlin.md b/htdocs/pages/install/marlin.md
similarity index 100%
rename from pages/install/marlin.md
rename to htdocs/pages/install/marlin.md
diff --git a/pages/install/mata.md b/htdocs/pages/install/mata.md
similarity index 100%
rename from pages/install/mata.md
rename to htdocs/pages/install/mata.md
diff --git a/pages/install/merlin.md b/htdocs/pages/install/merlin.md
similarity index 100%
rename from pages/install/merlin.md
rename to htdocs/pages/install/merlin.md
diff --git a/pages/install/mermaid.md b/htdocs/pages/install/mermaid.md
similarity index 100%
rename from pages/install/mermaid.md
rename to htdocs/pages/install/mermaid.md
diff --git a/pages/install/mido.md b/htdocs/pages/install/mido.md
similarity index 100%
rename from pages/install/mido.md
rename to htdocs/pages/install/mido.md
diff --git a/pages/install/n7100.md b/htdocs/pages/install/n7100.md
similarity index 100%
rename from pages/install/n7100.md
rename to htdocs/pages/install/n7100.md
diff --git a/pages/install/nash.md b/htdocs/pages/install/nash.md
similarity index 100%
rename from pages/install/nash.md
rename to htdocs/pages/install/nash.md
diff --git a/pages/install/natrium.md b/htdocs/pages/install/natrium.md
similarity index 100%
rename from pages/install/natrium.md
rename to htdocs/pages/install/natrium.md
diff --git a/pages/install/nx563j.md b/htdocs/pages/install/nx563j.md
similarity index 100%
rename from pages/install/nx563j.md
rename to htdocs/pages/install/nx563j.md
diff --git a/pages/install/olimex.md b/htdocs/pages/install/olimex.md
similarity index 100%
rename from pages/install/olimex.md
rename to htdocs/pages/install/olimex.md
diff --git a/pages/install/onclite.md b/htdocs/pages/install/onclite.md
similarity index 100%
rename from pages/install/onclite.md
rename to htdocs/pages/install/onclite.md
diff --git a/pages/install/oneplus2.md b/htdocs/pages/install/oneplus2.md
similarity index 100%
rename from pages/install/oneplus2.md
rename to htdocs/pages/install/oneplus2.md
diff --git a/pages/install/oneplus3.md b/htdocs/pages/install/oneplus3.md
similarity index 100%
rename from pages/install/oneplus3.md
rename to htdocs/pages/install/oneplus3.md
diff --git a/pages/install/onyx.md b/htdocs/pages/install/onyx.md
similarity index 100%
rename from pages/install/onyx.md
rename to htdocs/pages/install/onyx.md
diff --git a/pages/install/osprey.md b/htdocs/pages/install/osprey.md
similarity index 100%
rename from pages/install/osprey.md
rename to htdocs/pages/install/osprey.md
diff --git a/pages/install/payton.md b/htdocs/pages/install/payton.md
similarity index 100%
rename from pages/install/payton.md
rename to htdocs/pages/install/payton.md
diff --git a/pages/install/peregrine.md b/htdocs/pages/install/peregrine.md
similarity index 100%
rename from pages/install/peregrine.md
rename to htdocs/pages/install/peregrine.md
diff --git a/pages/install/pinebook.md b/htdocs/pages/install/pinebook.md
similarity index 100%
rename from pages/install/pinebook.md
rename to htdocs/pages/install/pinebook.md
diff --git a/pages/install/pioneer.md b/htdocs/pages/install/pioneer.md
similarity index 100%
rename from pages/install/pioneer.md
rename to htdocs/pages/install/pioneer.md
diff --git a/pages/install/pme.md b/htdocs/pages/install/pme.md
similarity index 100%
rename from pages/install/pme.md
rename to htdocs/pages/install/pme.md
diff --git a/pages/install/polaris.md b/htdocs/pages/install/polaris.md
similarity index 100%
rename from pages/install/polaris.md
rename to htdocs/pages/install/polaris.md
diff --git a/pages/install/r5.md b/htdocs/pages/install/r5.md
similarity index 100%
rename from pages/install/r5.md
rename to htdocs/pages/install/r5.md
diff --git a/pages/install/r7plus.md b/htdocs/pages/install/r7plus.md
similarity index 100%
rename from pages/install/r7plus.md
rename to htdocs/pages/install/r7plus.md
diff --git a/pages/install/r7sf.md b/htdocs/pages/install/r7sf.md
similarity index 100%
rename from pages/install/r7sf.md
rename to htdocs/pages/install/r7sf.md
diff --git a/pages/install/river.md b/htdocs/pages/install/river.md
similarity index 100%
rename from pages/install/river.md
rename to htdocs/pages/install/river.md
diff --git a/pages/install/s2.md b/htdocs/pages/install/s2.md
similarity index 100%
rename from pages/install/s2.md
rename to htdocs/pages/install/s2.md
diff --git a/pages/install/s3ve3gds.md b/htdocs/pages/install/s3ve3gds.md
similarity index 100%
rename from pages/install/s3ve3gds.md
rename to htdocs/pages/install/s3ve3gds.md
diff --git a/pages/install/s3ve3gjv.md b/htdocs/pages/install/s3ve3gjv.md
similarity index 100%
rename from pages/install/s3ve3gjv.md
rename to htdocs/pages/install/s3ve3gjv.md
diff --git a/pages/install/s3ve3gxx.md b/htdocs/pages/install/s3ve3gxx.md
similarity index 100%
rename from pages/install/s3ve3gxx.md
rename to htdocs/pages/install/s3ve3gxx.md
diff --git a/pages/install/s5neolte.md b/htdocs/pages/install/s5neolte.md
similarity index 100%
rename from pages/install/s5neolte.md
rename to htdocs/pages/install/s5neolte.md
diff --git a/pages/install/sagit.md b/htdocs/pages/install/sagit.md
similarity index 100%
rename from pages/install/sagit.md
rename to htdocs/pages/install/sagit.md
diff --git a/pages/install/sailfish.md b/htdocs/pages/install/sailfish.md
similarity index 100%
rename from pages/install/sailfish.md
rename to htdocs/pages/install/sailfish.md
diff --git a/pages/install/santoni.md b/htdocs/pages/install/santoni.md
similarity index 100%
rename from pages/install/santoni.md
rename to htdocs/pages/install/santoni.md
diff --git a/pages/install/scorpio.md b/htdocs/pages/install/scorpio.md
similarity index 100%
rename from pages/install/scorpio.md
rename to htdocs/pages/install/scorpio.md
diff --git a/pages/install/serrano3gxx.md b/htdocs/pages/install/serrano3gxx.md
similarity index 100%
rename from pages/install/serrano3gxx.md
rename to htdocs/pages/install/serrano3gxx.md
diff --git a/pages/install/serranodsdd.md b/htdocs/pages/install/serranodsdd.md
similarity index 100%
rename from pages/install/serranodsdd.md
rename to htdocs/pages/install/serranodsdd.md
diff --git a/pages/install/serranoltexx.md b/htdocs/pages/install/serranoltexx.md
similarity index 100%
rename from pages/install/serranoltexx.md
rename to htdocs/pages/install/serranoltexx.md
diff --git a/pages/install/shamu.md b/htdocs/pages/install/shamu.md
similarity index 100%
rename from pages/install/shamu.md
rename to htdocs/pages/install/shamu.md
diff --git a/pages/install/star2lte.md b/htdocs/pages/install/star2lte.md
similarity index 100%
rename from pages/install/star2lte.md
rename to htdocs/pages/install/star2lte.md
diff --git a/pages/install/starlte.md b/htdocs/pages/install/starlte.md
similarity index 100%
rename from pages/install/starlte.md
rename to htdocs/pages/install/starlte.md
diff --git a/pages/install/sumire.md b/htdocs/pages/install/sumire.md
similarity index 100%
rename from pages/install/sumire.md
rename to htdocs/pages/install/sumire.md
diff --git a/pages/install/surnia.md b/htdocs/pages/install/surnia.md
similarity index 100%
rename from pages/install/surnia.md
rename to htdocs/pages/install/surnia.md
diff --git a/pages/install/suzuran.md b/htdocs/pages/install/suzuran.md
similarity index 100%
rename from pages/install/suzuran.md
rename to htdocs/pages/install/suzuran.md
diff --git a/pages/install/t0lte.md b/htdocs/pages/install/t0lte.md
similarity index 100%
rename from pages/install/t0lte.md
rename to htdocs/pages/install/t0lte.md
diff --git a/pages/install/taimen.md b/htdocs/pages/install/taimen.md
similarity index 100%
rename from pages/install/taimen.md
rename to htdocs/pages/install/taimen.md
diff --git a/pages/install/tissot.md b/htdocs/pages/install/tissot.md
similarity index 100%
rename from pages/install/tissot.md
rename to htdocs/pages/install/tissot.md
diff --git a/pages/install/titan.md b/htdocs/pages/install/titan.md
similarity index 100%
rename from pages/install/titan.md
rename to htdocs/pages/install/titan.md
diff --git a/pages/install/treltexx.md b/htdocs/pages/install/treltexx.md
similarity index 100%
rename from pages/install/treltexx.md
rename to htdocs/pages/install/treltexx.md
diff --git a/pages/install/twolip.md b/htdocs/pages/install/twolip.md
similarity index 100%
rename from pages/install/twolip.md
rename to htdocs/pages/install/twolip.md
diff --git a/pages/install/victara.md b/htdocs/pages/install/victara.md
similarity index 100%
rename from pages/install/victara.md
rename to htdocs/pages/install/victara.md
diff --git a/pages/install/violet.md b/htdocs/pages/install/violet.md
similarity index 100%
rename from pages/install/violet.md
rename to htdocs/pages/install/violet.md
diff --git a/pages/install/voyager.md b/htdocs/pages/install/voyager.md
similarity index 100%
rename from pages/install/voyager.md
rename to htdocs/pages/install/voyager.md
diff --git a/pages/install/wayne.md b/htdocs/pages/install/wayne.md
similarity index 100%
rename from pages/install/wayne.md
rename to htdocs/pages/install/wayne.md
diff --git a/pages/install/whyred.md b/htdocs/pages/install/whyred.md
similarity index 100%
rename from pages/install/whyred.md
rename to htdocs/pages/install/whyred.md
diff --git a/pages/install/wt88047.md b/htdocs/pages/install/wt88047.md
similarity index 100%
rename from pages/install/wt88047.md
rename to htdocs/pages/install/wt88047.md
diff --git a/pages/install/x2.md b/htdocs/pages/install/x2.md
similarity index 100%
rename from pages/install/x2.md
rename to htdocs/pages/install/x2.md
diff --git a/pages/install/z2_plus.md b/htdocs/pages/install/z2_plus.md
similarity index 100%
rename from pages/install/z2_plus.md
rename to htdocs/pages/install/z2_plus.md
diff --git a/pages/install/z3.md b/htdocs/pages/install/z3.md
similarity index 100%
rename from pages/install/z3.md
rename to htdocs/pages/install/z3.md
diff --git a/pages/install/z3c.md b/htdocs/pages/install/z3c.md
similarity index 100%
rename from pages/install/z3c.md
rename to htdocs/pages/install/z3c.md
diff --git a/pages/install/zangya.md b/htdocs/pages/install/zangya.md
similarity index 100%
rename from pages/install/zangya.md
rename to htdocs/pages/install/zangya.md
diff --git a/pages/install/zangyapro.md b/htdocs/pages/install/zangyapro.md
similarity index 100%
rename from pages/install/zangyapro.md
rename to htdocs/pages/install/zangyapro.md
diff --git a/pages/install/zenfone3.md b/htdocs/pages/install/zenfone3.md
similarity index 100%
rename from pages/install/zenfone3.md
rename to htdocs/pages/install/zenfone3.md
diff --git a/pages/install/zl1.md b/htdocs/pages/install/zl1.md
similarity index 100%
rename from pages/install/zl1.md
rename to htdocs/pages/install/zl1.md
diff --git a/pages/install_e_GS290_linux.md b/htdocs/pages/install_e_GS290_linux.md
similarity index 100%
rename from pages/install_e_GS290_linux.md
rename to htdocs/pages/install_e_GS290_linux.md
diff --git a/pages/insufficient-permissions.md b/htdocs/pages/insufficient-permissions.md
similarity index 100%
rename from pages/insufficient-permissions.md
rename to htdocs/pages/insufficient-permissions.md
diff --git a/pages/jobs.md b/htdocs/pages/jobs.md
similarity index 100%
rename from pages/jobs.md
rename to htdocs/pages/jobs.md
diff --git a/pages/laptops.html b/htdocs/pages/laptops.html
similarity index 100%
rename from pages/laptops.html
rename to htdocs/pages/laptops.html
diff --git a/pages/legal-notice-and-privacy.md b/htdocs/pages/legal-notice-and-privacy.md
similarity index 100%
rename from pages/legal-notice-and-privacy.md
rename to htdocs/pages/legal-notice-and-privacy.md
diff --git a/pages/maps.md b/htdocs/pages/maps.md
similarity index 100%
rename from pages/maps.md
rename to htdocs/pages/maps.md
diff --git a/pages/microg-en-update.md b/htdocs/pages/microg-en-update.md
similarity index 100%
rename from pages/microg-en-update.md
rename to htdocs/pages/microg-en-update.md
diff --git a/pages/projects-looking-for-contributors.md b/htdocs/pages/projects-looking-for-contributors.md
similarity index 100%
rename from pages/projects-looking-for-contributors.md
rename to htdocs/pages/projects-looking-for-contributors.md
diff --git a/pages/q-beta-FP3.md b/htdocs/pages/q-beta-FP3.md
similarity index 100%
rename from pages/q-beta-FP3.md
rename to htdocs/pages/q-beta-FP3.md
diff --git a/pages/q-beta.md b/htdocs/pages/q-beta.md
similarity index 100%
rename from pages/q-beta.md
rename to htdocs/pages/q-beta.md
diff --git a/pages/q-upgrade-fp3.md b/htdocs/pages/q-upgrade-fp3.md
similarity index 100%
rename from pages/q-upgrade-fp3.md
rename to htdocs/pages/q-upgrade-fp3.md
diff --git a/pages/report-an-issue.md b/htdocs/pages/report-an-issue.md
similarity index 100%
rename from pages/report-an-issue.md
rename to htdocs/pages/report-an-issue.md
diff --git a/pages/revert_e_GS290_windows.md b/htdocs/pages/revert_e_GS290_windows.md
similarity index 100%
rename from pages/revert_e_GS290_windows.md
rename to htdocs/pages/revert_e_GS290_windows.md
diff --git a/pages/rom-maintainer.md b/htdocs/pages/rom-maintainer.md
similarity index 100%
rename from pages/rom-maintainer.md
rename to htdocs/pages/rom-maintainer.md
diff --git a/pages/sync-contact-webmail.md b/htdocs/pages/sync-contact-webmail.md
similarity index 100%
rename from pages/sync-contact-webmail.md
rename to htdocs/pages/sync-contact-webmail.md
diff --git a/pages/tester.md b/htdocs/pages/tester.md
similarity index 100%
rename from pages/tester.md
rename to htdocs/pages/tester.md
diff --git a/pages/testimonies.md b/htdocs/pages/testimonies.md
similarity index 100%
rename from pages/testimonies.md
rename to htdocs/pages/testimonies.md
diff --git a/pages/tissot-crazy-touchscreen.md b/htdocs/pages/tissot-crazy-touchscreen.md
similarity index 100%
rename from pages/tissot-crazy-touchscreen.md
rename to htdocs/pages/tissot-crazy-touchscreen.md
diff --git a/pages/translators.md b/htdocs/pages/translators.md
similarity index 100%
rename from pages/translators.md
rename to htdocs/pages/translators.md
diff --git a/pages/unauthorized-device.md b/htdocs/pages/unauthorized-device.md
similarity index 100%
rename from pages/unauthorized-device.md
rename to htdocs/pages/unauthorized-device.md
diff --git a/pages/understand-and-use-gsi.md b/htdocs/pages/understand-and-use-gsi.md
similarity index 100%
rename from pages/understand-and-use-gsi.md
rename to htdocs/pages/understand-and-use-gsi.md
diff --git a/pages/upgrade/FP2.md b/htdocs/pages/upgrade/FP2.md
similarity index 100%
rename from pages/upgrade/FP2.md
rename to htdocs/pages/upgrade/FP2.md
diff --git a/pages/upgrade/FP3.md b/htdocs/pages/upgrade/FP3.md
similarity index 100%
rename from pages/upgrade/FP3.md
rename to htdocs/pages/upgrade/FP3.md
diff --git a/pages/upgrade/a3xelte.md b/htdocs/pages/upgrade/a3xelte.md
similarity index 100%
rename from pages/upgrade/a3xelte.md
rename to htdocs/pages/upgrade/a3xelte.md
diff --git a/pages/upgrade/a5xelte.md b/htdocs/pages/upgrade/a5xelte.md
similarity index 100%
rename from pages/upgrade/a5xelte.md
rename to htdocs/pages/upgrade/a5xelte.md
diff --git a/pages/upgrade/a5y17lte.md b/htdocs/pages/upgrade/a5y17lte.md
similarity index 100%
rename from pages/upgrade/a5y17lte.md
rename to htdocs/pages/upgrade/a5y17lte.md
diff --git a/pages/upgrade/a7y17lte.md b/htdocs/pages/upgrade/a7y17lte.md
similarity index 100%
rename from pages/upgrade/a7y17lte.md
rename to htdocs/pages/upgrade/a7y17lte.md
diff --git a/pages/upgrade/bacon.md b/htdocs/pages/upgrade/bacon.md
similarity index 100%
rename from pages/upgrade/bacon.md
rename to htdocs/pages/upgrade/bacon.md
diff --git a/pages/upgrade/beryllium.md b/htdocs/pages/upgrade/beryllium.md
similarity index 100%
rename from pages/upgrade/beryllium.md
rename to htdocs/pages/upgrade/beryllium.md
diff --git a/pages/upgrade/capricorn.md b/htdocs/pages/upgrade/capricorn.md
similarity index 100%
rename from pages/upgrade/capricorn.md
rename to htdocs/pages/upgrade/capricorn.md
diff --git a/pages/upgrade/cheeseburger.md b/htdocs/pages/upgrade/cheeseburger.md
similarity index 100%
rename from pages/upgrade/cheeseburger.md
rename to htdocs/pages/upgrade/cheeseburger.md
diff --git a/pages/upgrade/chiron.md b/htdocs/pages/upgrade/chiron.md
similarity index 100%
rename from pages/upgrade/chiron.md
rename to htdocs/pages/upgrade/chiron.md
diff --git a/pages/upgrade/crackling.md b/htdocs/pages/upgrade/crackling.md
similarity index 100%
rename from pages/upgrade/crackling.md
rename to htdocs/pages/upgrade/crackling.md
diff --git a/pages/upgrade/d802.md b/htdocs/pages/upgrade/d802.md
similarity index 100%
rename from pages/upgrade/d802.md
rename to htdocs/pages/upgrade/d802.md
diff --git a/pages/upgrade/d855.md b/htdocs/pages/upgrade/d855.md
similarity index 100%
rename from pages/upgrade/d855.md
rename to htdocs/pages/upgrade/d855.md
diff --git a/pages/upgrade/dipper.md b/htdocs/pages/upgrade/dipper.md
similarity index 100%
rename from pages/upgrade/dipper.md
rename to htdocs/pages/upgrade/dipper.md
diff --git a/pages/upgrade/dumpling.md b/htdocs/pages/upgrade/dumpling.md
similarity index 100%
rename from pages/upgrade/dumpling.md
rename to htdocs/pages/upgrade/dumpling.md
diff --git a/pages/upgrade/enchilada.md b/htdocs/pages/upgrade/enchilada.md
similarity index 100%
rename from pages/upgrade/enchilada.md
rename to htdocs/pages/upgrade/enchilada.md
diff --git a/pages/upgrade/fajita.md b/htdocs/pages/upgrade/fajita.md
similarity index 100%
rename from pages/upgrade/fajita.md
rename to htdocs/pages/upgrade/fajita.md
diff --git a/pages/upgrade/gemini.md b/htdocs/pages/upgrade/gemini.md
similarity index 100%
rename from pages/upgrade/gemini.md
rename to htdocs/pages/upgrade/gemini.md
diff --git a/pages/upgrade/guacamole.md b/htdocs/pages/upgrade/guacamole.md
similarity index 100%
rename from pages/upgrade/guacamole.md
rename to htdocs/pages/upgrade/guacamole.md
diff --git a/pages/upgrade/guacamoleb.md b/htdocs/pages/upgrade/guacamoleb.md
similarity index 100%
rename from pages/upgrade/guacamoleb.md
rename to htdocs/pages/upgrade/guacamoleb.md
diff --git a/pages/upgrade/h850.md b/htdocs/pages/upgrade/h850.md
similarity index 100%
rename from pages/upgrade/h850.md
rename to htdocs/pages/upgrade/h850.md
diff --git a/pages/upgrade/harpia.md b/htdocs/pages/upgrade/harpia.md
similarity index 100%
rename from pages/upgrade/harpia.md
rename to htdocs/pages/upgrade/harpia.md
diff --git a/pages/upgrade/hero2lte.md b/htdocs/pages/upgrade/hero2lte.md
similarity index 100%
rename from pages/upgrade/hero2lte.md
rename to htdocs/pages/upgrade/hero2lte.md
diff --git a/pages/upgrade/herolte.md b/htdocs/pages/upgrade/herolte.md
similarity index 100%
rename from pages/upgrade/herolte.md
rename to htdocs/pages/upgrade/herolte.md
diff --git a/pages/upgrade/hlte.md b/htdocs/pages/upgrade/hlte.md
similarity index 100%
rename from pages/upgrade/hlte.md
rename to htdocs/pages/upgrade/hlte.md
diff --git a/pages/upgrade/jason.md b/htdocs/pages/upgrade/jason.md
similarity index 100%
rename from pages/upgrade/jason.md
rename to htdocs/pages/upgrade/jason.md
diff --git a/pages/upgrade/jfltexx.md b/htdocs/pages/upgrade/jfltexx.md
similarity index 100%
rename from pages/upgrade/jfltexx.md
rename to htdocs/pages/upgrade/jfltexx.md
diff --git a/pages/upgrade/kiwi.md b/htdocs/pages/upgrade/kiwi.md
similarity index 100%
rename from pages/upgrade/kiwi.md
rename to htdocs/pages/upgrade/kiwi.md
diff --git a/pages/upgrade/klte.md b/htdocs/pages/upgrade/klte.md
similarity index 100%
rename from pages/upgrade/klte.md
rename to htdocs/pages/upgrade/klte.md
diff --git a/pages/upgrade/klteactivexx.md b/htdocs/pages/upgrade/klteactivexx.md
similarity index 100%
rename from pages/upgrade/klteactivexx.md
rename to htdocs/pages/upgrade/klteactivexx.md
diff --git a/pages/upgrade/land.md b/htdocs/pages/upgrade/land.md
similarity index 100%
rename from pages/upgrade/land.md
rename to htdocs/pages/upgrade/land.md
diff --git a/pages/upgrade/lux.md b/htdocs/pages/upgrade/lux.md
similarity index 100%
rename from pages/upgrade/lux.md
rename to htdocs/pages/upgrade/lux.md
diff --git a/pages/upgrade/m8.md b/htdocs/pages/upgrade/m8.md
similarity index 100%
rename from pages/upgrade/m8.md
rename to htdocs/pages/upgrade/m8.md
diff --git a/pages/upgrade/marlin.md b/htdocs/pages/upgrade/marlin.md
similarity index 100%
rename from pages/upgrade/marlin.md
rename to htdocs/pages/upgrade/marlin.md
diff --git a/pages/upgrade/mata.md b/htdocs/pages/upgrade/mata.md
similarity index 100%
rename from pages/upgrade/mata.md
rename to htdocs/pages/upgrade/mata.md
diff --git a/pages/upgrade/natrium.md b/htdocs/pages/upgrade/natrium.md
similarity index 100%
rename from pages/upgrade/natrium.md
rename to htdocs/pages/upgrade/natrium.md
diff --git a/pages/upgrade/oneplus2.md b/htdocs/pages/upgrade/oneplus2.md
similarity index 100%
rename from pages/upgrade/oneplus2.md
rename to htdocs/pages/upgrade/oneplus2.md
diff --git a/pages/upgrade/oneplus3.md b/htdocs/pages/upgrade/oneplus3.md
similarity index 100%
rename from pages/upgrade/oneplus3.md
rename to htdocs/pages/upgrade/oneplus3.md
diff --git a/pages/upgrade/osprey.md b/htdocs/pages/upgrade/osprey.md
similarity index 100%
rename from pages/upgrade/osprey.md
rename to htdocs/pages/upgrade/osprey.md
diff --git a/pages/upgrade/pioneer.md b/htdocs/pages/upgrade/pioneer.md
similarity index 100%
rename from pages/upgrade/pioneer.md
rename to htdocs/pages/upgrade/pioneer.md
diff --git a/pages/upgrade/polaris.md b/htdocs/pages/upgrade/polaris.md
similarity index 100%
rename from pages/upgrade/polaris.md
rename to htdocs/pages/upgrade/polaris.md
diff --git a/pages/upgrade/s2.md b/htdocs/pages/upgrade/s2.md
similarity index 100%
rename from pages/upgrade/s2.md
rename to htdocs/pages/upgrade/s2.md
diff --git a/pages/upgrade/s3ve3gds.md b/htdocs/pages/upgrade/s3ve3gds.md
similarity index 100%
rename from pages/upgrade/s3ve3gds.md
rename to htdocs/pages/upgrade/s3ve3gds.md
diff --git a/pages/upgrade/s3ve3gjv.md b/htdocs/pages/upgrade/s3ve3gjv.md
similarity index 100%
rename from pages/upgrade/s3ve3gjv.md
rename to htdocs/pages/upgrade/s3ve3gjv.md
diff --git a/pages/upgrade/s3ve3gxx.md b/htdocs/pages/upgrade/s3ve3gxx.md
similarity index 100%
rename from pages/upgrade/s3ve3gxx.md
rename to htdocs/pages/upgrade/s3ve3gxx.md
diff --git a/pages/upgrade/sagit.md b/htdocs/pages/upgrade/sagit.md
similarity index 100%
rename from pages/upgrade/sagit.md
rename to htdocs/pages/upgrade/sagit.md
diff --git a/pages/upgrade/sailfish.md b/htdocs/pages/upgrade/sailfish.md
similarity index 100%
rename from pages/upgrade/sailfish.md
rename to htdocs/pages/upgrade/sailfish.md
diff --git a/pages/upgrade/santoni.md b/htdocs/pages/upgrade/santoni.md
similarity index 100%
rename from pages/upgrade/santoni.md
rename to htdocs/pages/upgrade/santoni.md
diff --git a/pages/upgrade/shamu.md b/htdocs/pages/upgrade/shamu.md
similarity index 100%
rename from pages/upgrade/shamu.md
rename to htdocs/pages/upgrade/shamu.md
diff --git a/pages/upgrade/star2lte.md b/htdocs/pages/upgrade/star2lte.md
similarity index 100%
rename from pages/upgrade/star2lte.md
rename to htdocs/pages/upgrade/star2lte.md
diff --git a/pages/upgrade/starlte.md b/htdocs/pages/upgrade/starlte.md
similarity index 100%
rename from pages/upgrade/starlte.md
rename to htdocs/pages/upgrade/starlte.md
diff --git a/pages/upgrade/taimen.md b/htdocs/pages/upgrade/taimen.md
similarity index 100%
rename from pages/upgrade/taimen.md
rename to htdocs/pages/upgrade/taimen.md
diff --git a/pages/upgrade/tissot.md b/htdocs/pages/upgrade/tissot.md
similarity index 100%
rename from pages/upgrade/tissot.md
rename to htdocs/pages/upgrade/tissot.md
diff --git a/pages/upgrade/whyred.md b/htdocs/pages/upgrade/whyred.md
similarity index 100%
rename from pages/upgrade/whyred.md
rename to htdocs/pages/upgrade/whyred.md
diff --git a/pages/upgrade/wt88047.md b/htdocs/pages/upgrade/wt88047.md
similarity index 100%
rename from pages/upgrade/wt88047.md
rename to htdocs/pages/upgrade/wt88047.md
diff --git a/pages/upgrade/x2.md b/htdocs/pages/upgrade/x2.md
similarity index 100%
rename from pages/upgrade/x2.md
rename to htdocs/pages/upgrade/x2.md
diff --git a/pages/upgrade/zl1.md b/htdocs/pages/upgrade/zl1.md
similarity index 100%
rename from pages/upgrade/zl1.md
rename to htdocs/pages/upgrade/zl1.md
diff --git a/pages/volunteer.md b/htdocs/pages/volunteer.md
similarity index 100%
rename from pages/volunteer.md
rename to htdocs/pages/volunteer.md
diff --git a/pages/what-s-e.md b/htdocs/pages/what-s-e.md
similarity index 98%
rename from pages/what-s-e.md
rename to htdocs/pages/what-s-e.md
index 8d7a81b090bc53650bcef1d86ec0d123323f29a9..eb14b92baa67d07d1217bcd37c1e43f28f753dc8 100644
--- a/pages/what-s-e.md
+++ b/htdocs/pages/what-s-e.md
@@ -115,7 +115,7 @@ Other preinstalled applications:
## /e/ online services at ecloud.global
-![Capture_d_écran_2019-04-30_à_14.33.38](../images/Capture_d_écran_2019-04-30_à_14.33.38.png)
+![online_services_login_eos_ecloud](../images/online_services_login_eos_ecloud.png)
- /e/ "spot" at [https://spot.ecloud.global](https://spot.ecloud.global) search engine is a fork of [SearX](https://searx.me/) meta-search engine. Improvements made include
diff --git a/pdf/user_data_privacy_20180906_v6.1.pdf b/htdocs/pdf/user_data_privacy_20180906_v6.1.pdf
similarity index 100%
rename from pdf/user_data_privacy_20180906_v6.1.pdf
rename to htdocs/pdf/user_data_privacy_20180906_v6.1.pdf
diff --git a/scripts/default.yml b/htdocs/scripts/default.yml
similarity index 100%
rename from scripts/default.yml
rename to htdocs/scripts/default.yml
diff --git a/scripts/generate_device.sh b/htdocs/scripts/generate_device.sh
similarity index 100%
rename from scripts/generate_device.sh
rename to htdocs/scripts/generate_device.sh
diff --git a/scripts/run_all_devices.sh b/htdocs/scripts/run_all_devices.sh
similarity index 100%
rename from scripts/run_all_devices.sh
rename to htdocs/scripts/run_all_devices.sh
diff --git a/scripts/templates/device.yml b/htdocs/scripts/templates/device.yml
similarity index 100%
rename from scripts/templates/device.yml
rename to htdocs/scripts/templates/device.yml
diff --git a/scripts/templates/info.md b/htdocs/scripts/templates/info.md
similarity index 100%
rename from scripts/templates/info.md
rename to htdocs/scripts/templates/info.md
diff --git a/scripts/templates/install.md b/htdocs/scripts/templates/install.md
similarity index 100%
rename from scripts/templates/install.md
rename to htdocs/scripts/templates/install.md
diff --git "a/images/Capture_d_\303\251cran_2019-04-30_\303\240_14.49.51.png" "b/images/Capture_d_\303\251cran_2019-04-30_\303\240_14.49.51.png"
deleted file mode 100644
index 1c10c96ba22c17ae7c135a7cc8c94e4b373a2ce5..0000000000000000000000000000000000000000
Binary files "a/images/Capture_d_\303\251cran_2019-04-30_\303\240_14.49.51.png" and /dev/null differ
diff --git "a/images/Capture_d_\303\251cran_2019-04-30_\303\240_14.50.59.png" "b/images/Capture_d_\303\251cran_2019-04-30_\303\240_14.50.59.png"
deleted file mode 100644
index 01c495ad7de393820a09279b4693c0cc4f398c52..0000000000000000000000000000000000000000
Binary files "a/images/Capture_d_\303\251cran_2019-04-30_\303\240_14.50.59.png" and /dev/null differ
diff --git "a/images/Capture_d_\303\251cran_2019-04-30_\303\240_15.05.19.png" "b/images/Capture_d_\303\251cran_2019-04-30_\303\240_15.05.19.png"
deleted file mode 100644
index dbee59ef659907b8542345fd29fad36f47a4556b..0000000000000000000000000000000000000000
Binary files "a/images/Capture_d_\303\251cran_2019-04-30_\303\240_15.05.19.png" and /dev/null differ