diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..80b8654 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Environment +.env +*.env.local + +# Python +__pycache__/ +*.pyc +venv/ +.venv/ + +# Backups (contain secrets) +backups/ +*.tar.gz +*.tar.gz.enc +*.sha256 + +# Temp +/tmp/ +*.tmp +*.swp + +# IDE +.vscode/ +.idea/ +*.code-workspace + +# OS +.DS_Store +Thumbs.db diff --git a/install_gotelegram_bot.sh b/install_gotelegram_bot.sh new file mode 100755 index 0000000..bb0f1a6 --- /dev/null +++ b/install_gotelegram_bot.sh @@ -0,0 +1,132 @@ +#!/bin/bash +# GoTelegram v2.2.1 — Установка Telegram-бота +# Создаёт venv, ставит зависимости, настраивает systemd + +set -e +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +CYAN='\033[0;36m' +NC='\033[0m' + +BOT_DIR="/opt/gotelegram-bot" +SERVICE_NAME="gotelegram-bot" +GOTELEGRAM_DIR="/opt/gotelegram" + +if [ "$EUID" -ne 0 ]; then + echo -e "${RED}Запустите с sudo.${NC}" + exit 1 +fi + +echo -e "${CYAN}╔═══════════════════════════════════════════╗${NC}" +echo -e "${CYAN}║${NC} ${GREEN}GoTelegram v2.2.1 — Установка бота${NC} ${CYAN}║${NC}" +echo -e "${CYAN}╚═══════════════════════════════════════════╝${NC}" +echo "" + +# ── Python ─────────────────────────────────────────────────────────────────── +if ! command -v python3 &>/dev/null; then + echo -e "${YELLOW}[*] Установка python3...${NC}" + if command -v apt-get &>/dev/null; then + apt-get update -qq && apt-get install -y -qq python3 python3-pip python3-venv + elif command -v dnf &>/dev/null; then + dnf install -y -q python3 python3-pip + elif command -v yum &>/dev/null; then + yum install -y -q python3 python3-pip + fi +fi + +# ── Каталог бота ───────────────────────────────────────────────────────────── +mkdir -p "$BOT_DIR" +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +if [ -f "$SCRIPT_DIR/gotelegram-bot/bot.py" ]; then + echo -e "${GREEN}[*] Копирование файлов бота...${NC}" + cp "$SCRIPT_DIR/gotelegram-bot/bot.py" "$BOT_DIR/" + cp "$SCRIPT_DIR/gotelegram-bot/requirements.txt" "$BOT_DIR/" + [ -f "$SCRIPT_DIR/gotelegram-bot/config.example.env" ] && cp "$SCRIPT_DIR/gotelegram-bot/config.example.env" "$BOT_DIR/" +else + echo -e "${RED}Файлы бота не найдены в $SCRIPT_DIR/gotelegram-bot/${NC}" + exit 1 +fi + +# Копируем каталог шаблонов +if [ -f "$SCRIPT_DIR/templates_catalog.json" ]; then + mkdir -p "$GOTELEGRAM_DIR" + cp "$SCRIPT_DIR/templates_catalog.json" "$GOTELEGRAM_DIR/" + echo -e "${GREEN}[*] Каталог шаблонов скопирован${NC}" +fi + +# ── Virtual environment ────────────────────────────────────────────────────── +if [ ! -d "$BOT_DIR/venv" ]; then + echo -e "${GREEN}[*] Создание виртуального окружения...${NC}" + python3 -m venv "$BOT_DIR/venv" +fi + +echo -e "${GREEN}[*] Установка зависимостей...${NC}" +"$BOT_DIR/venv/bin/pip" install -r "$BOT_DIR/requirements.txt" -q + +# ── Конфигурация ───────────────────────────────────────────────────────────── +if [ ! -f "$BOT_DIR/.env" ]; then + echo "" + echo -e "${YELLOW}Введите BOT_TOKEN от @BotFather:${NC}" + TOKEN="" + while [ -z "$TOKEN" ]; do + read -r TOKEN + TOKEN=$(echo "$TOKEN" | tr -d '[:space:]') + [ -z "$TOKEN" ] && echo -e "${RED}Токен не может быть пустым.${NC}" + done + + echo -ne "${YELLOW}ID администратора (Enter = доступ для всех):${NC} " + read -r ADMIN_ID + + { + echo "BOT_TOKEN=$TOKEN" + [ -n "$ADMIN_ID" ] && echo "ALLOWED_IDS=$ADMIN_ID" + } > "$BOT_DIR/.env" + + chmod 600 "$BOT_DIR/.env" + echo -e "${GREEN}[*] .env создан${NC}" +else + echo -e "${GREEN}[*] .env уже существует${NC}" +fi + +# ── Systemd ────────────────────────────────────────────────────────────────── +cat > "/etc/systemd/system/${SERVICE_NAME}.service" << EOF +[Unit] +Description=GoTelegram v2.2.1 Telegram Bot +After=network.target + +[Service] +Type=simple +WorkingDirectory=$BOT_DIR +ExecStart=$BOT_DIR/venv/bin/python $BOT_DIR/bot.py +Restart=always +RestartSec=5 +Environment=PATH=$BOT_DIR/venv/bin:/usr/bin + +[Install] +WantedBy=multi-user.target +EOF + +systemctl daemon-reload +systemctl enable "$SERVICE_NAME" +systemctl restart "$SERVICE_NAME" 2>/dev/null || systemctl start "$SERVICE_NAME" + +echo "" +echo -e "${GREEN}╔═══════════════════════════════════════════╗${NC}" +echo -e "${GREEN}║ ✅ Бот установлен и запущен! ║${NC}" +echo -e "${GREEN}╚═══════════════════════════════════════════╝${NC}" +echo "" +echo -e "Проверка: ${CYAN}systemctl status $SERVICE_NAME${NC}" +echo -e "Логи: ${CYAN}journalctl -u $SERVICE_NAME -f${NC}" +echo -e "Настройки: ${CYAN}$BOT_DIR/.env${NC}" +echo "" + +# Благодарности +echo -e "${CYAN}─────────────────────────────────────────────${NC}" +echo -e "💜 Спасибо авторам открытых проектов:" +echo -e " ${CYAN}telemt${NC} — MTProxy engine (Rust)" +echo -e " ${CYAN}HTML5 UP${NC} — шаблоны сайтов (CC BY 3.0)" +echo -e " ${CYAN}learning-zone${NC} — 150+ HTML5 шаблонов" +echo -e " ${CYAN}Start Bootstrap${NC} — Bootstrap шаблоны (MIT)" +echo -e "${CYAN}─────────────────────────────────────────────${NC}" diff --git a/templates_catalog.json b/templates_catalog.json index 799cebb..c4125eb 100644 --- a/templates_catalog.json +++ b/templates_catalog.json @@ -1,16339 +1,16339 @@ -{ - "categories": [ - { - "id": "business", - "name": "Бизнес и корпоративные", - "icon": "briefcase", - "templates": [ - { - "id": "h5up_aerial", - "name": "Aerial", - "source": "html5up", - "description": "Корпоративный сайт с минималистичным дизайном", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "aerial", - "preview_url": "https://html5up.net/aerial/" - }, - { - "id": "h5up_alpha", - "name": "Alpha", - "source": "html5up", - "description": "Профессиональный корпоративный шаблон", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "alpha", - "preview_url": "https://html5up.net/alpha/" - }, - { - "id": "h5up_arcana", - "name": "Arcana", - "source": "html5up", - "description": "Стильный деловой сайт с эффектами", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "arcana", - "preview_url": "https://html5up.net/arcana/" - }, - { - "id": "h5up_directive", - "name": "Directive", - "source": "html5up", - "description": "Компактный корпоративный шаблон", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "directive", - "preview_url": "https://html5up.net/directive/" - }, - { - "id": "h5up_dimension", - "name": "Dimension", - "source": "html5up", - "description": "Элегантный деловой портал", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "dimension", - "preview_url": "https://html5up.net/dimension/" - }, - { - "id": "h5up_editorial", - "name": "Editorial", - "source": "html5up", - "description": "Деловой журнальный сайт", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "editorial", - "preview_url": "https://html5up.net/editorial/" - }, - { - "id": "h5up_helios", - "name": "Helios", - "source": "html5up", - "description": "Современный бизнес-сайт", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "helios", - "preview_url": "https://html5up.net/helios/" - }, - { - "id": "h5up_identity", - "name": "Identity", - "source": "html5up", - "description": "Профильная карточка компании", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "identity", - "preview_url": "https://html5up.net/identity/" - }, - { - "id": "lz_atlanta_business", - "name": "Atlanta Business", - "source": "learning-zone", - "description": "Шаблон для бизнес-консультаций", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "atlanta-free-business-bootstrap-template", - "preview_url": "https://learning-zone.github.io/website-templates/atlanta-free-business-bootstrap-template/" - }, - { - "id": "lz_creative_bee", - "name": "Creative Bee Corporate", - "source": "learning-zone", - "description": "Креативное корпоративное агентство", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "creative-bee-corporate-free-html5-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/creative-bee-corporate-free-html5-web-template/" - }, - { - "id": "lz_frames_corporate", - "name": "Frames Corporate", - "source": "learning-zone", - "description": "Корпоративный сайт с фреймами", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "frames-corporate-bootstrap-free-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/frames-corporate-bootstrap-free-html5-template/" - }, - { - "id": "lz_ninja_consulting", - "name": "Ninja Business Consulting", - "source": "learning-zone", - "description": "Сайт бизнес-консультаций", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "ninja-business-consulting-html-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/ninja-business-consulting-html-responsive-web-template/" - }, - { - "id": "lz_vone_business", - "name": "Vone Business", - "source": "learning-zone", - "description": "Адаптивный бизнес-шаблон", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "vone-free-business-html5-responsive-website", - "preview_url": "https://learning-zone.github.io/website-templates/vone-free-business-html5-responsive-website/" - }, - { - "id": "lz_kavin_corporate", - "name": "Kavin Corporate", - "source": "learning-zone", - "description": "Элегантный корпоративный портал", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "kavin-corporate-bootstrap-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/kavin-corporate-bootstrap-responsive-web-template/" - }, - { - "id": "lz_swifty_business", - "name": "Swifty Business", - "source": "learning-zone", - "description": "Быстрый и стильный бизнес-сайт", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "swifty-business-html5-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/swifty-business-html5-website-template/" - }, - { - "id": "lz_techking_corporate", - "name": "TechKing Corporate", - "source": "learning-zone", - "description": "IT-компании и технологический бизнес", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "techking-free-html5-template-for-corporate-business", - "preview_url": "https://learning-zone.github.io/website-templates/techking-free-html5-template-for-corporate-business/" - }, - { - "id": "lz_everest_corporate", - "name": "Everest Corporate", - "source": "learning-zone", - "description": "Профессиональный корпоративный портал", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "everest-corporate-business-bootstrap-template", - "preview_url": "https://learning-zone.github.io/website-templates/everest-corporate-business-bootstrap-template/" - }, - { - "id": "sb_agency", - "name": "StartBootstrap Agency", - "source": "startbootstrap", - "description": "Сайт креативного агентства", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-agency", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-agency/" - }, - { - "id": "sb_modern_business", - "name": "StartBootstrap Modern Business", - "source": "startbootstrap", - "description": "Современный шаблон для бизнеса", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-modern-business", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-modern-business/" - }, - { - "id": "th_bizpage", - "name": "Bizpage", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bizpage", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bizpage/", - "description": "Free Bootstrap 4 Business Template" - }, - { - "id": "th_boxus", - "name": "Boxus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/boxus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/boxus/", - "description": "Boxus is a free HTML website template for the creative agency. Its boxed style and unique layout will help you create any website that attracts more audience." - }, - { - "id": "th_glint", - "name": "Glint", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/glint", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/glint/", - "description": "A digital agency website template. It's free to download and easy to customize." - }, - { - "id": "th_office", - "name": "Office", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Office", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Office/", - "description": "Office - Free Responsive Multipage Bootstrap Template for Small and Medium Business" - }, - { - "id": "th_startup", - "name": "Startup", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/startup", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/startup/", - "description": "Startup" - }, - { - "id": "th_startup2", - "name": "Startup2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/startup2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/startup2/", - "description": "Startup2" - }, - { - "id": "th_euro_travels", - "name": "Euro Travels", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Euro-Travels", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Euro-Travels/", - "description": "A Free Responsive Agency Template " - }, - { - "id": "th_blue", - "name": "Blue", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/blue", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/blue/", - "description": "Free One Page Bootstrap Agency Template" - }, - { - "id": "th_cleaning_company", - "name": "Cleaning Company", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cleaning-company", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cleaning-company/", - "description": "Cleaning Company" - }, - { - "id": "th_agency_2", - "name": "Agency 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/agency-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/agency-2/", - "description": "Agency 2" - }, - { - "id": "th_finances", - "name": "Finances", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/finances", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/finances/", - "description": "Finances" - }, - { - "id": "th_finance_business", - "name": "Finance Business", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/finance-business", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/finance-business/", - "description": "Finance Business" - }, - { - "id": "th_fotogency", - "name": "Fotogency", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fotogency", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fotogency/", - "description": "A Photography Agency Web Template" - }, - { - "id": "th_constructioncompany", - "name": "Constructioncompany", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/constructioncompany", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/constructioncompany/", - "description": "Constructioncompany" - }, - { - "id": "th_law", - "name": "Law", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/law", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/law/", - "description": "A Free Bootstrap 4 Law Firm Template for your convenience" - }, - { - "id": "th_startupbusiness", - "name": "Startupbusiness", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/startupbusiness", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/startupbusiness/", - "description": "Startupbusiness" - }, - { - "id": "th_law_firm", - "name": "Law Firm", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/law-firm", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/law-firm/", - "description": "Law Firm" - }, - { - "id": "th_open_enterprise", - "name": "Open Enterprise", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/open-enterprise", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/open-enterprise/", - "description": "Open Enterprise" - }, - { - "id": "th_consultingbiz", - "name": "Consultingbiz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/consultingbiz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/consultingbiz/", - "description": "Consultingbiz" - }, - { - "id": "th_navigator", - "name": "Navigator", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/navigator", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/navigator/", - "description": "Free One Page Agency Template" - }, - { - "id": "th_industrious", - "name": "Industrious", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/industrious", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/industrious/", - "description": "It's Industrious, a responsive template for business websites. Let's get it here:" - }, - { - "id": "th_robot_factory", - "name": "Robot Factory", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/robot_factory", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/robot_factory/", - "description": "Best Responsive Free HTML5 Template for a Start-up Factory, industry or company" - }, - { - "id": "th_traveler", - "name": "Traveler", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/traveler", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/traveler/", - "description": "Bootstrap template for travel agency and itinerary websites." - }, - { - "id": "th_avada_agency_pro", - "name": "Avada Agency Pro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/avada-agency-pro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/avada-agency-pro/", - "description": "Avada Agency Pro" - }, - { - "id": "th_estartup", - "name": "Estartup", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/estartup", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/estartup/", - "description": "Estartup" - }, - { - "id": "th_creativeagency", - "name": "Creativeagency", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/creativeagency", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/creativeagency/", - "description": "Creativeagency" - }, - { - "id": "th_renessa", - "name": "Renessa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Renessa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Renessa/", - "description": "Renessa - A Free Responsive Multipurpose Bootstrap Template for Agency and Personal Website" - }, - { - "id": "th_themelight", - "name": "Themelight", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/themelight", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/themelight/", - "description": "Free Bootstrap Business Template" - }, - { - "id": "th_reveal", - "name": "Reveal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/reveal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/reveal/", - "description": "Bootstrap 4 based business template with a compelling design. Download now:" - }, - { - "id": "th_outing", - "name": "Outing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/outing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/outing/", - "description": "A highly efficient Bootstrap 4 website template for travel agency. Download here:" - }, - { - "id": "th_b_hero", - "name": "B Hero", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/b-hero", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/b-hero/", - "description": "Business website template built on Bootstrap 4. It's free and mobile-friendly." - }, - { - "id": "th_lawfirm", - "name": "Lawfirm", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lawfirm", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lawfirm/", - "description": "Lawfirm" - }, - { - "id": "th_airspace", - "name": "Airspace", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/airspace", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/airspace/", - "description": "Responsive Business Agency Template Free" - }, - { - "id": "th_ebusiness", - "name": "Ebusiness", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ebusiness", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ebusiness/", - "description": "Ebusiness" - }, - { - "id": "th_businessbox", - "name": "Businessbox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/businessbox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/businessbox/", - "description": "A stunning business template with Bootstrap 4 and multi-page." - }, - { - "id": "th_consulting", - "name": "Consulting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/consulting", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/consulting/", - "description": "Consulting" - }, - { - "id": "th_sulfer_multipage_business_html5_template", - "name": "Sulfer Multipage Business Html5 Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sulfer-multipage-business-html5-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sulfer-multipage-business-html5-template/", - "description": "Sulfer Multipage Business Html5 Template" - }, - { - "id": "th_go_crepe", - "name": "Go Crepe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/go-crepe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/go-crepe/", - "description": "Go Crepe is free HTML5 business template with one page layout." - }, - { - "id": "th_agency", - "name": "Agency", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/agency", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/agency/", - "description": "Multipage Responsive Agency Template" - }, - { - "id": "th_transitive", - "name": "Transitive", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/transitive", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/transitive/", - "description": "Transitive is a free HTML5 business template with parallax and video background. Download now from the link below:" - }, - { - "id": "th_the_seo_company", - "name": "The Seo Company", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/the-seo-company", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/the-seo-company/", - "description": "The Seo Company" - }, - { - "id": "th_design4profit", - "name": "Design4Profit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Design4Profit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Design4Profit/", - "description": "Design4Profit - An Elegant Responsive Business Template for large, medium and small company." - }, - { - "id": "th_creative_agency_2", - "name": "Creative Agency 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/creative-agency-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/creative-agency-2/", - "description": "Creative Agency 2" - }, - { - "id": "th_creative_bootstrap_4", - "name": "Creative Bootstrap 4", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/creative-bootstrap-4", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/creative-bootstrap-4/", - "description": "Get this Bootstrap 4 template to create a compelling business website." - }, - { - "id": "th_creative_star", - "name": "Creative Star", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Creative-STAR", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Creative-STAR/", - "description": "A Free One Page Agency Bootstrap Template " - }, - { - "id": "th_heado", - "name": "Heado", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Heado", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Heado/", - "description": "Free Web Agency Website Template" - }, - { - "id": "th_villaagency", - "name": "Villaagency", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/VillaAgency", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/VillaAgency/", - "description": "Villaagency" - }, - { - "id": "th_alien", - "name": "Alien", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/alien", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/alien/", - "description": "Free Responsive Business Website Template" - }, - { - "id": "th_buildermax", - "name": "Buildermax", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/BuilderMax", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/BuilderMax/", - "description": "Free Responive Business Website Template" - }, - { - "id": "th_boravio_dk", - "name": "Boravio.Dk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Boravio.dk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Boravio.dk/", - "description": "Landingpage for a danish startup online shop 💻⚙️" - }, - { - "id": "th_lifesure", - "name": "Lifesure", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/LifeSure", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/LifeSure/", - "description": "Free Business & corporate Website Template" - }, - { - "id": "th_acuas", - "name": "Acuas", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/acuas", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/acuas/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_travisa", - "name": "Travisa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Travisa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Travisa/", - "description": "Free Bootstrap 5 Responsive Business Website Template" - }, - { - "id": "th_investa", - "name": "Investa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Investa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Investa/", - "description": "Free Investment Business Website Template" - }, - { - "id": "th_mailler", - "name": "Mailler", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Mailler", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Mailler/", - "description": "Free Multipage Responsive Bootstrap 5 Business Website Template" - }, - { - "id": "th_stocker", - "name": "Stocker", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stocker", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stocker/", - "description": "Free Bootstrap 5 Stock Business Website Template" - }, - { - "id": "th_electricca", - "name": "Electricca", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/electricca", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/electricca/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_plumberz", - "name": "Plumberz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Plumberz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Plumberz/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_flare", - "name": "Flare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/flare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/flare/", - "description": "Free Agency Landing Page Template" - }, - { - "id": "th_hvac_new", - "name": "Hvac New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hvac-new", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hvac-new/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_selecao", - "name": "Selecao", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Selecao", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Selecao/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_active", - "name": "Active", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/active", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/active/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_impact", - "name": "Impact", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Impact", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Impact/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_nova_new", - "name": "Nova New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nova-new", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nova-new/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_bizland", - "name": "Bizland", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/BizLand", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/BizLand/", - "description": "Free Bootstrap 5 Business Website Template" - }, - { - "id": "th_company", - "name": "Company", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Company", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Company/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_romyk", - "name": "Romyk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Romyk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Romyk/", - "description": "Free Business Website Template" - }, - { - "id": "th_vesperr", - "name": "Vesperr", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vesperr", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vesperr/", - "description": "Download this free agency template from:" - }, - { - "id": "th_estateagency", - "name": "Estateagency", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/estateagency", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/estateagency/", - "description": "Estateagency" - }, - { - "id": "th_inazuma_tailwind", - "name": "Inazuma Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/inazuma-tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/inazuma-tailwind/", - "description": "A company landing page website template built with Tailwind CSS. " - }, - { - "id": "th_startup_nextjs", - "name": "Startup Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/startup-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/startup-nextjs/", - "description": "Startup Nextjs" - }, - { - "id": "th_business", - "name": "Business", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Business", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Business/", - "description": "Business" - }, - { - "id": "th_pms_investment_services", - "name": "Pms Investment Services", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pms-investment-services", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pms-investment-services/", - "description": "PMS Next.js Finance Website Template" - }, - { - "id": "th_agency_tailwind", - "name": "Agency Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/agency-tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/agency-tailwind/", - "description": "Agency - Tailwind Agency landing page Template" - }, - { - "id": "da_agile_agency_free_bootstrap_web_template", - "name": "Agile Agency Free Bootstrap Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "agile-agency-free-bootstrap-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/agile-agency-free-bootstrap-web-template/", - "description": "Agile Agency Free Bootstrap Web Template" - }, - { - "id": "da_atlanta_free_business_bootstrap_template", - "name": "Atlanta Free Business Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "atlanta-free-business-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/atlanta-free-business-bootstrap-template/", - "description": "Atlanta Free Business Bootstrap Template" - }, - { - "id": "da_businessline_corporate_portfolio_bootstrap_responsive_web", - "name": "Businessline Corporate Portfolio Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "businessline-corporate-portfolio-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/businessline-corporate-portfolio-bootstrap-responsive-web-template/", - "description": "Businessline Corporate Portfolio Bootstrap Responsive Web Template" - }, - { - "id": "da_businessr_corporate_bootstrap_responsive_web_template", - "name": "Businessr Corporate Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "businessr-corporate-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/businessr-corporate-bootstrap-responsive-web-template/", - "description": "Businessr Corporate Bootstrap Responsive Web Template" - }, - { - "id": "da_creative_bee_corporate_free_html5_web_template", - "name": "Creative Bee Corporate Free Html5 Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "creative-bee-corporate-free-html5-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/creative-bee-corporate-free-html5-web-template/", - "description": "Creative Bee Corporate Free Html5 Web Template" - }, - { - "id": "da_creative_free_responsive_html5_business_template", - "name": "Creative Free Responsive Html5 Business Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "creative-free-responsive-html5-business-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/creative-free-responsive-html5-business-template/", - "description": "Creative Free Responsive Html5 Business Template" - }, - { - "id": "da_darktouch_corporate_portfolio_bootstrap_responsive_web_te", - "name": "Darktouch Corporate Portfolio Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "darktouch-corporate-portfolio-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/darktouch-corporate-portfolio-bootstrap-responsive-web-template/", - "description": "Darktouch Corporate Portfolio Bootstrap Responsive Web Template" - }, - { - "id": "da_enlive_corporate_free_html5_bootstrap_web_template", - "name": "Enlive Corporate Free Html5 Bootstrap Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "enlive-corporate-free-html5-bootstrap-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/enlive-corporate-free-html5-bootstrap-web-template/", - "description": "Enlive Corporate Free Html5 Bootstrap Web Template" - }, - { - "id": "da_everest_corporate_business_bootstrap_template", - "name": "Everest Corporate Business Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "everest-corporate-business-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/everest-corporate-business-bootstrap-template/", - "description": "Everest Corporate Business Bootstrap Template" - }, - { - "id": "da_frames_corporate_bootstrap_free_html5_template", - "name": "Frames Corporate Bootstrap Free Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "frames-corporate-bootstrap-free-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/frames-corporate-bootstrap-free-html5-template/", - "description": "Frames Corporate Bootstrap Free Html5 Template" - }, - { - "id": "da_free_bootstrap_template_rockline_business", - "name": "Free Bootstrap Template Rockline Business", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "free-bootstrap-template-rockline-business", - "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-rockline-business/", - "description": "Free Bootstrap Template Rockline Business" - }, - { - "id": "da_kavin_corporate_bootstrap_responsive_web_template", - "name": "Kavin Corporate Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "kavin-corporate-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/kavin-corporate-bootstrap-responsive-web-template/", - "description": "Kavin Corporate Bootstrap Responsive Web Template" - }, - { - "id": "da_moto_business_html5_responsive_web_template", - "name": "Moto Business Html5 Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "moto-business-html5-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/moto-business-html5-responsive-web-template/", - "description": "Moto Business Html5 Responsive Web Template" - }, - { - "id": "da_ninja_business_consulting_html_responsive_web_template", - "name": "Ninja Business Consulting Html Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "ninja-business-consulting-html-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/ninja-business-consulting-html-responsive-web-template/", - "description": "Ninja Business Consulting Html Responsive Web Template" - }, - { - "id": "da_retro_free_consulting_responsive_html5_website_template", - "name": "Retro Free Consulting Responsive Html5 Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "retro-free-consulting-responsive-html5-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/retro-free-consulting-responsive-html5-website-template/", - "description": "Retro Free Consulting Responsive Html5 Website Template" - }, - { - "id": "da_rocket_business_bootstrap_free_responsive_web_theme", - "name": "Rocket Business Bootstrap Free Responsive Web Theme", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "rocket-business-bootstrap-free-responsive-web-theme", - "preview_url": "https://dawidolko.github.io/Website-Templates/rocket-business-bootstrap-free-responsive-web-theme/", - "description": "Rocket Business Bootstrap Free Responsive Web Theme" - }, - { - "id": "da_startbootstrap_agency_1_0_2", - "name": "Agency 1.0.2", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "startbootstrap-agency-1.0.2", - "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-agency-1.0.2/", - "description": "Agency 1.0.2" - }, - { - "id": "da_swifty_business_html5_website_template", - "name": "Swifty Business Html5 Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "swifty-business-html5-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/swifty-business-html5-website-template/", - "description": "Swifty Business Html5 Website Template" - }, - { - "id": "da_team_business_flat_bootstrap_html5_template", - "name": "Team Business Flat Bootstrap Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "team-business-flat-bootstrap-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/team-business-flat-bootstrap-html5-template/", - "description": "Team Business Flat Bootstrap Html5 Template" - }, - { - "id": "da_techking_free_html5_template_for_corporate_business", - "name": "Techking Free Html5 Template For Corporate Business", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "techking-free-html5-template-for-corporate-business", - "preview_url": "https://dawidolko.github.io/Website-Templates/techking-free-html5-template-for-corporate-business/", - "description": "Techking Free Html5 Template For Corporate Business" - }, - { - "id": "da_times_corporate_portfolio_bootstrap_responsive_web_templa", - "name": "Times Corporate Portfolio Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "times-corporate-portfolio-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/times-corporate-portfolio-bootstrap-responsive-web-template/", - "description": "Times Corporate Portfolio Bootstrap Responsive Web Template" - }, - { - "id": "da_vibe_free_html5_template_for_corporate_website", - "name": "Vibe Free Html5 Template For Corporate Website", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "vibe-free-html5-template-for-corporate-website", - "preview_url": "https://dawidolko.github.io/Website-Templates/vibe-free-html5-template-for-corporate-website/", - "description": "Vibe Free Html5 Template For Corporate Website" - }, - { - "id": "da_vibrant_corporate_bootstrap_responsive_website_template", - "name": "Vibrant Corporate Bootstrap Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "vibrant-corporate-bootstrap-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/vibrant-corporate-bootstrap-responsive-website-template/", - "description": "Vibrant Corporate Bootstrap Responsive Website Template" - }, - { - "id": "da_vone_free_business_html5_responsive_website", - "name": "Vone Free Business Html5 Responsive Website", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "vone-free-business-html5-responsive-website", - "preview_url": "https://dawidolko.github.io/Website-Templates/vone-free-business-html5-responsive-website/", - "description": "Vone Free Business Html5 Responsive Website" - }, - { - "id": "da_vteam_a_corporate_multipurpose_free_bootstrap_responsive_", - "name": "Vteam A Corporate Multipurpose Free Bootstrap Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "vteam-a-corporate-multipurpose-free-bootstrap-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/vteam-a-corporate-multipurpose-free-bootstrap-responsive-template/", - "description": "Vteam A Corporate Multipurpose Free Bootstrap Responsive Template" - } - ] - }, - { - "id": "ecommerce", - "name": "Интернет-магазины", - "icon": "shopping-cart", - "templates": [ - { - "id": "h5up_overflow", - "name": "Overflow", - "source": "html5up", - "description": "Портал онлайн-магазина", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "overflow", - "preview_url": "https://html5up.net/overflow/" - }, - { - "id": "h5up_minimaxing", - "name": "Minimaxing", - "source": "html5up", - "description": "Минималистичный магазин", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "minimaxing", - "preview_url": "https://html5up.net/minimaxing/" - }, - { - "id": "h5up_multiverse", - "name": "Multiverse", - "source": "html5up", - "description": "Мультифункциональный магазин", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "multiverse", - "preview_url": "https://html5up.net/multiverse/" - }, - { - "id": "h5up_telephasic", - "name": "Telephasic", - "source": "html5up", - "description": "Современный интернет-магазин", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "telephasic", - "preview_url": "https://html5up.net/telephasic/" - }, - { - "id": "h5up_miniport", - "name": "Miniport", - "source": "html5up", - "description": "Компактный каталог товаров", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "miniport", - "preview_url": "https://html5up.net/miniport/" - }, - { - "id": "th_cozastore", - "name": "Cozastore", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cozastore", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cozastore/", - "description": "Cozastore" - }, - { - "id": "th_eshopper", - "name": "Eshopper", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eshopper", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eshopper/", - "description": "Eshopper" - }, - { - "id": "th_zay_shop", - "name": "Zay Shop", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/zay-shop", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/zay-shop/", - "description": "Zay Shop" - }, - { - "id": "th_shop", - "name": "Shop", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/shop", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/shop/", - "description": "Shop" - }, - { - "id": "th_hexashop", - "name": "Hexashop", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hexashop", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hexashop/", - "description": "Hexashop" - }, - { - "id": "th_coloshop", - "name": "Coloshop", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/coloshop", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/coloshop/", - "description": "Coloshop" - }, - { - "id": "th_productly", - "name": "Productly", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/productly", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/productly/", - "description": "Productly" - }, - { - "id": "th_metronic_shop_ui", - "name": "Metronic Shop Ui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Metronic-Shop-UI", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Metronic-Shop-UI/", - "description": "Metronic Shop Ui" - }, - { - "id": "th_multishop", - "name": "Multishop", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/multishop", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/multishop/", - "description": "Multishop" - }, - { - "id": "th_freshshop", - "name": "Freshshop", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/freshshop", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/freshshop/", - "description": "Freshshop" - }, - { - "id": "th_minishop", - "name": "Minishop", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/minishop", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/minishop/", - "description": "Minishop" - }, - { - "id": "th_shoppers", - "name": "Shoppers", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/shoppers", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/shoppers/", - "description": "Shoppers" - }, - { - "id": "th_adminmart", - "name": "Adminmart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adminmart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adminmart/", - "description": "Adminmart" - }, - { - "id": "th_product_admin", - "name": "Product Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/product-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/product-admin/", - "description": "Product Admin" - }, - { - "id": "th_liquorstore", - "name": "Liquorstore", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/liquorstore", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/liquorstore/", - "description": "Liquorstore" - }, - { - "id": "th_smartedu", - "name": "Smartedu", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/smartedu", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/smartedu/", - "description": "Smartedu" - }, - { - "id": "th_shopmax", - "name": "Shopmax", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/shopmax", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/shopmax/", - "description": "Shopmax" - }, - { - "id": "th_pillowmart", - "name": "Pillowmart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pillowmart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pillowmart/", - "description": "Pillowmart" - }, - { - "id": "th_vex_bootstrap_4_free_product_landing_page_template", - "name": "Vex Bootstrap 4 Free Product Landing Page Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vex-Bootstrap-4-Free-product-landing-page-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vex-Bootstrap-4-Free-product-landing-page-template/", - "description": "Free Bootstrap 4 landing page template to download" - }, - { - "id": "th_estore", - "name": "Estore", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/estore", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/estore/", - "description": "Estore" - }, - { - "id": "th_martine", - "name": "Martine", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/martine", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/martine/", - "description": "Martine" - }, - { - "id": "th_evie", - "name": "Evie", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/evie", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/evie/", - "description": "A production-ready theme for your projects with a minimal style guide https://evie.undraw.co" - }, - { - "id": "th_ministore", - "name": "Ministore", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MiniStore", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MiniStore/", - "description": "Ministore" - }, - { - "id": "th_coffo", - "name": "Coffo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Coffo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Coffo/", - "description": "Free Coffee Shop Website Template" - }, - { - "id": "th_bookly", - "name": "Bookly", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Bookly", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Bookly/", - "description": "Free HTML5 eCommerce Website Template" - }, - { - "id": "th_organic", - "name": "Organic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/organic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/organic/", - "description": "Free eCommerce Website template" - }, - { - "id": "th_booksaw", - "name": "Booksaw", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/booksaw", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/booksaw/", - "description": "Free eCommerce Website template" - }, - { - "id": "th_stylish", - "name": "Stylish", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stylish", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stylish/", - "description": "Free eCommerce Website template" - }, - { - "id": "th_foodmart", - "name": "Foodmart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/FoodMart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/FoodMart/", - "description": "Free Bootstrap 5 eCom Website Template" - }, - { - "id": "th_kaira", - "name": "Kaira", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kaira", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kaira/", - "description": "Free Bootstrap 5 eCommerce Website template" - }, - { - "id": "th_nextmerce_nextjs", - "name": "Nextmerce Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nextmerce-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nextmerce-nextjs/", - "description": "NextMerce - Free Next.js eCommerce Template" - }, - { - "id": "th_nordic", - "name": "Nordic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nordic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nordic/", - "description": "Nordic Store - Minimal ecommerce product listing template" - }, - { - "id": "da_coffee_shop_free_html5_template", - "name": "Coffee Shop Free Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "coffee-shop-free-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/coffee-shop-free-html5-template/", - "description": "Coffee Shop Free Html5 Template" - }, - { - "id": "da_smart_interior_designs_html5_bootstrap_web_template", - "name": "Smart Interior Designs Html5 Bootstrap Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "smart-interior-designs-html5-bootstrap-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/smart-interior-designs-html5-bootstrap-web-template/", - "description": "Smart Interior Designs Html5 Bootstrap Web Template" - } - ] - }, - { - "id": "medical", - "name": "Медицина и фитнес", - "icon": "heart", - "templates": [ - { - "id": "lz_medplus_medical", - "name": "MedPlus Medical", - "source": "learning-zone", - "description": "Сайт медицинской клиники", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "medplus-medical", - "preview_url": "https://learning-zone.github.io/website-templates/medplus-medical/" - }, - { - "id": "lz_vcare_hospital", - "name": "VCare Hospital", - "source": "learning-zone", - "description": "Шаблон для больницы", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "vcare-free-html5-template-hospital-website", - "preview_url": "https://learning-zone.github.io/website-templates/vcare-free-html5-template-hospital-website/" - }, - { - "id": "lz_touch_hospital", - "name": "Touch Hospital", - "source": "learning-zone", - "description": "Медицинский центр на Bootstrap", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "touch-hospital-medical-bootstrap-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/touch-hospital-medical-bootstrap-html5-template/" - }, - { - "id": "lz_fit_healthy_fitness", - "name": "Fit Healthy Fitness", - "source": "learning-zone", - "description": "Фитнес-клуб и спортзал", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "fit-healthy-fitness-and-gym-html5-bootstrap-theme", - "preview_url": "https://learning-zone.github.io/website-templates/fit-healthy-fitness-and-gym-html5-bootstrap-theme/" - }, - { - "id": "lz_fitness_zone", - "name": "Fitness Zone", - "source": "learning-zone", - "description": "Зона фитнеса и тренировок", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "fitness-zone-html5-bootstrap-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/fitness-zone-html5-bootstrap-responsive-web-template/" - }, - { - "id": "th_gymlife", - "name": "Gymlife", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gymlife", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gymlife/", - "description": "Gymlife" - }, - { - "id": "th_medicalcenter", - "name": "Medicalcenter", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medicalcenter", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medicalcenter/", - "description": "Medicalcenter" - }, - { - "id": "th_physicaltherapy", - "name": "Physicaltherapy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/physicaltherapy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/physicaltherapy/", - "description": "Physicaltherapy" - }, - { - "id": "th_lifecare", - "name": "Lifecare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lifecare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lifecare/", - "description": "Free website template for hospitals and clinics." - }, - { - "id": "th_health_center", - "name": "Health Center", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/health-center", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/health-center/", - "description": "Health Center" - }, - { - "id": "th_healthcouch", - "name": "Healthcouch", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/healthcouch", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/healthcouch/", - "description": "Healthcouch" - }, - { - "id": "th_yogaflex", - "name": "Yogaflex", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yogaflex", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yogaflex/", - "description": "Yogaflex" - }, - { - "id": "th_yogalax", - "name": "Yogalax", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yogalax", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yogalax/", - "description": "Yogalax" - }, - { - "id": "th_fitnessclub", - "name": "Fitnessclub", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fitnessclub", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fitnessclub/", - "description": "Fitnessclub" - }, - { - "id": "th_healthcoach", - "name": "Healthcoach", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/healthcoach", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/healthcoach/", - "description": "Healthcoach" - }, - { - "id": "th_yoga", - "name": "Yoga", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yoga", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yoga/", - "description": "Yoga" - }, - { - "id": "th_top_gym", - "name": "Top Gym", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/top-gym", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/top-gym/", - "description": "Top Gym" - }, - { - "id": "th_xgym", - "name": "Xgym", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/xgym", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/xgym/", - "description": "Xgym" - }, - { - "id": "th_gym2", - "name": "Gym2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gym2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gym2/", - "description": "Gym2" - }, - { - "id": "th_yoga2", - "name": "Yoga2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yoga2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yoga2/", - "description": "Yoga2" - }, - { - "id": "th_gymer", - "name": "Gymer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gymer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gymer/", - "description": "Gymer" - }, - { - "id": "th_gym", - "name": "Gym", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gym", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gym/", - "description": "Gym" - }, - { - "id": "th_fitnesstrainer", - "name": "Fitnesstrainer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fitnesstrainer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fitnesstrainer/", - "description": "Fitnesstrainer" - }, - { - "id": "th_fitness_1", - "name": "Fitness 1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fitness-1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fitness-1/", - "description": "Free Bootstrap 4 fitness website template" - }, - { - "id": "th_yogasan", - "name": "Yogasan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Yogasan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Yogasan/", - "description": "Yogasan" - }, - { - "id": "th_yogaclass", - "name": "Yogaclass", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yogaClass", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yogaClass/", - "description": "Yogaclass" - }, - { - "id": "th_medilab", - "name": "Medilab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MediLab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MediLab/", - "description": "Free Bootstrap 5 Medical Website Template" - }, - { - "id": "th_medicio", - "name": "Medicio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MediCio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MediCio/", - "description": "Free Bootstrap 5 Medical Website Template" - }, - { - "id": "th_fitness", - "name": "Fitness", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Fitness", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Fitness/", - "description": "Free Bootstrap 5 Fitness Website Template" - }, - { - "id": "th_clinic", - "name": "Clinic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Clinic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Clinic/", - "description": "Clinic" - }, - { - "id": "th_fitness_bootstrap", - "name": "Fitness Bootstrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Fitness-Bootstrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Fitness-Bootstrap/", - "description": "Fitness Bootstrap" - }, - { - "id": "th_dental_pro", - "name": "Dental Pro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dental-pro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dental-pro/", - "description": "Dental Pro" - }, - { - "id": "da_add_life_health_fitness_free_bootstrap_html5_template", - "name": "Add Life Health Fitness Free Bootstrap Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "add-life-health-fitness-free-bootstrap-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/add-life-health-fitness-free-bootstrap-html5-template/", - "description": "Add Life Health Fitness Free Bootstrap Html5 Template" - }, - { - "id": "da_fit_healthy_fitness_and_gym_html5_bootstrap_theme", - "name": "Fit Healthy Fitness And Gym Html5 Bootstrap Theme", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "fit-healthy-fitness-and-gym-html5-bootstrap-theme", - "preview_url": "https://dawidolko.github.io/Website-Templates/fit-healthy-fitness-and-gym-html5-bootstrap-theme/", - "description": "Fit Healthy Fitness And Gym Html5 Bootstrap Theme" - }, - { - "id": "da_fitness_zone_html5_bootstrap_responsive_web_template", - "name": "Fitness Zone Html5 Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "fitness-zone-html5-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/fitness-zone-html5-bootstrap-responsive-web-template/", - "description": "Fitness Zone Html5 Bootstrap Responsive Web Template" - }, - { - "id": "da_getdoctor_free_bootstrap_responsive_website_template", - "name": "Getdoctor Free Bootstrap Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "getdoctor-free-bootstrap-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/getdoctor-free-bootstrap-responsive-website-template/", - "description": "Getdoctor Free Bootstrap Responsive Website Template" - }, - { - "id": "da_medplus_medical", - "name": "Medplus Medical", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "medplus-medical", - "preview_url": "https://dawidolko.github.io/Website-Templates/medplus-medical/", - "description": "Medplus Medical" - }, - { - "id": "da_touch_hospital_medical_bootstrap_html5_template", - "name": "Touch Hospital Medical Bootstrap Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "touch-hospital-medical-bootstrap-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/touch-hospital-medical-bootstrap-html5-template/", - "description": "Touch Hospital Medical Bootstrap Html5 Template" - }, - { - "id": "da_vcare_free_html5_template_hospital_website", - "name": "Vcare Free Html5 Template Hospital Website", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "vcare-free-html5-template-hospital-website", - "preview_url": "https://dawidolko.github.io/Website-Templates/vcare-free-html5-template-hospital-website/", - "description": "Vcare Free Html5 Template Hospital Website" - } - ] - }, - { - "id": "education", - "name": "Образование", - "icon": "book", - "templates": [ - { - "id": "lz_bschool_education", - "name": "B-School Education", - "source": "learning-zone", - "description": "Сайт образовательного учреждения", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "b-school-free-education-html5-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/b-school-free-education-html5-website-template/" - }, - { - "id": "lz_learn_education", - "name": "Learn Education", - "source": "learning-zone", - "description": "Платформа онлайн-обучения", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "learn-educational-free-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/learn-educational-free-responsive-web-template/" - }, - { - "id": "lz_school_education", - "name": "School Education", - "source": "learning-zone", - "description": "Сайт школы", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "school-educational-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/school-educational-html5-template/" - }, - { - "id": "lz_victory_education", - "name": "Victory Education", - "source": "learning-zone", - "description": "Образовательный портал", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "victory-educational-institution-free-html5-bootstrap-template", - "preview_url": "https://learning-zone.github.io/website-templates/victory-educational-institution-free-html5-bootstrap-template/" - }, - { - "id": "th_elearning", - "name": "Elearning", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elearning", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elearning/", - "description": "Elearning" - }, - { - "id": "th_course", - "name": "Course", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/course", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/course/", - "description": "Course" - }, - { - "id": "th_edusite", - "name": "Edusite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/edusite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/edusite/", - "description": "For a top-grade education template, choose EduSite. It's free and responsive." - }, - { - "id": "th_grad_school", - "name": "Grad School", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/grad-school", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/grad-school/", - "description": "Grad School" - }, - { - "id": "th_courses", - "name": "Courses", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/courses", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/courses/", - "description": "Courses" - }, - { - "id": "th_oneschool", - "name": "Oneschool", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/oneschool", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/oneschool/", - "description": "Oneschool" - }, - { - "id": "th_education", - "name": "Education", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/education", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/education/", - "description": "Education" - }, - { - "id": "th_edulogy", - "name": "Edulogy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/edulogy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/edulogy/", - "description": "Bootstrap education template free download" - }, - { - "id": "th_tutor", - "name": "Tutor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tutor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tutor/", - "description": "Tutor" - }, - { - "id": "th_cooking_school", - "name": "Cooking School", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cooking-school", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cooking-school/", - "description": "Cooking School" - }, - { - "id": "th_jubilee", - "name": "Jubilee", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jubilee", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jubilee/", - "description": "Free Educational Website Template" - }, - { - "id": "th_scholar", - "name": "Scholar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/scholar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/scholar/", - "description": "Free Educational Website Template" - }, - { - "id": "th_oinia", - "name": "Oinia", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Oinia", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Oinia/", - "description": "Free Educational Website Template" - }, - { - "id": "th_babycare", - "name": "Babycare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/BabyCare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/BabyCare/", - "description": "Free Bootstrap 5 Educational Website Template" - }, - { - "id": "th_mentor", - "name": "Mentor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Mentor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Mentor/", - "description": "Free Bootstrap 5 Educational Website Template" - }, - { - "id": "th_profusion", - "name": "Profusion", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Profusion", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Profusion/", - "description": "Free Educational site template" - }, - { - "id": "th_e_learning", - "name": "E Learning", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/E-learning", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/E-learning/", - "description": "E Learning" - }, - { - "id": "th_si_educational_nextjs", - "name": "Si Educational Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/si-educational-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/si-educational-nextjs/", - "description": "Si Educational Nextjs" - }, - { - "id": "th_si_educational_website_template", - "name": "Si Educational Website Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Si-Educational-Website-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Si-Educational-Website-Template/", - "description": "Si Educational Website Template" - }, - { - "id": "th_nextjs_tailwind_course_landing_page", - "name": "Nextjs Tailwind Course Landing Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/NextJS-Tailwind-Course-Landing-Page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/NextJS-Tailwind-Course-Landing-Page/", - "description": "Nextjs Tailwind Course Landing Page" - }, - { - "id": "th_si_education", - "name": "Si Education", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/si-education", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/si-education/", - "description": "Si Educational Free NextJs Landing Page Template" - }, - { - "id": "th_learnhub", - "name": "Learnhub", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/learnhub", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/learnhub/", - "description": "LearnHub- Free eLearning Bootstrap Educational Website Template" - }, - { - "id": "th_purdue", - "name": "Purdue", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/purdue", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/purdue/", - "description": "Purdue – Education & Online Course HTML Template" - }, - { - "id": "th_eduleb", - "name": "Eduleb", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eduleb", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eduleb/", - "description": "Eduleb - Education HTML Template" - }, - { - "id": "da_above_educational_bootstrap_responsive_template", - "name": "Above Educational Bootstrap Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "above-educational-bootstrap-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/above-educational-bootstrap-responsive-template/", - "description": "Above Educational Bootstrap Responsive Template" - }, - { - "id": "da_b_school_free_education_html5_website_template", - "name": "B School Free Education Html5 Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "b-school-free-education-html5-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/b-school-free-education-html5-website-template/", - "description": "B School Free Education Html5 Website Template" - }, - { - "id": "da_learn_educational_free_responsive_web_template", - "name": "Learn Educational Free Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "learn-educational-free-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/learn-educational-free-responsive-web-template/", - "description": "Learn Educational Free Responsive Web Template" - }, - { - "id": "da_mentor_free_html5_bootstrap_coming_soon_template", - "name": "Mentor Free Html5 Bootstrap Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "mentor-free-html5-bootstrap-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/mentor-free-html5-bootstrap-coming-soon-template/", - "description": "Mentor Free Html5 Bootstrap Coming Soon Template" - }, - { - "id": "da_school_educational_html5_template", - "name": "School Educational Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "school-educational-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/school-educational-html5-template/", - "description": "School Educational Html5 Template" - }, - { - "id": "da_victory_educational_institution_free_html5_bootstrap_temp", - "name": "Victory Educational Institution Free Html5 Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "victory-educational-institution-free-html5-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/victory-educational-institution-free-html5-bootstrap-template/", - "description": "Victory Educational Institution Free Html5 Bootstrap Template" - } - ] - }, - { - "id": "portfolio", - "name": "Портфолио и креатив", - "icon": "palette", - "templates": [ - { - "id": "h5up_astral", - "name": "Astral", - "source": "html5up", - "description": "Портфолио с галереей", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "astral", - "preview_url": "https://html5up.net/astral/" - }, - { - "id": "h5up_ethereal", - "name": "Ethereal", - "source": "html5up", - "description": "Портфолио с эффектами", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "ethereal", - "preview_url": "https://html5up.net/ethereal/" - }, - { - "id": "h5up_forty", - "name": "Forty", - "source": "html5up", - "description": "Минималистичное портфолио", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "forty", - "preview_url": "https://html5up.net/forty/" - }, - { - "id": "h5up_fractal", - "name": "Fractal", - "source": "html5up", - "description": "Портфолио с геометрическим дизайном", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "fractal", - "preview_url": "https://html5up.net/fractal/" - }, - { - "id": "h5up_halcyonic", - "name": "Halcyonic", - "source": "html5up", - "description": "Яркое портфолио", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "halcyonic", - "preview_url": "https://html5up.net/halcyonic/" - }, - { - "id": "h5up_highlights", - "name": "Highlights", - "source": "html5up", - "description": "Портфолио с выделением работ", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "highlights", - "preview_url": "https://html5up.net/highlights/" - }, - { - "id": "h5up_lens", - "name": "Lens", - "source": "html5up", - "description": "Фотографический портал", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "lens", - "preview_url": "https://html5up.net/lens/" - }, - { - "id": "h5up_paradigm_shift", - "name": "Paradigm Shift", - "source": "html5up", - "description": "Современное портфолио", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "paradigm-shift", - "preview_url": "https://html5up.net/paradigm-shift/" - }, - { - "id": "h5up_phantom", - "name": "Phantom", - "source": "html5up", - "description": "Портфолио с темной темой", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "phantom", - "preview_url": "https://html5up.net/phantom/" - }, - { - "id": "h5up_photon", - "name": "Photon", - "source": "html5up", - "description": "Фото-портфолио", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "photon", - "preview_url": "https://html5up.net/photon/" - }, - { - "id": "h5up_strata", - "name": "Strata", - "source": "html5up", - "description": "Компактное портфолио", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "strata", - "preview_url": "https://html5up.net/strata/" - }, - { - "id": "h5up_striped", - "name": "Striped", - "source": "html5up", - "description": "Портфолио в полоску", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "striped", - "preview_url": "https://html5up.net/striped/" - }, - { - "id": "lz_iclick_photography", - "name": "iClick Photography", - "source": "learning-zone", - "description": "Портфолио фотографа", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "iclick-photography-bootstrap-free-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/iclick-photography-bootstrap-free-website-template/" - }, - { - "id": "lz_amaze_photography", - "name": "Amaze Photography", - "source": "learning-zone", - "description": "Студия фотографии", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "amaze-photography-bootstrap-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/amaze-photography-bootstrap-html5-template/" - }, - { - "id": "lz_html5_portfolio", - "name": "HTML5 Portfolio", - "source": "learning-zone", - "description": "Универсальный портфолио", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "html5-portfolio", - "preview_url": "https://learning-zone.github.io/website-templates/html5-portfolio/" - }, - { - "id": "lz_wow_portfolio", - "name": "WOW Portfolio", - "source": "learning-zone", - "description": "Многофункциональное портфолио", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "wow-portfolio-multi-purpose-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/wow-portfolio-multi-purpose-html5-template/" - }, - { - "id": "lz_me_portfolio", - "name": "ME Portfolio", - "source": "learning-zone", - "description": "Личный портфолио и резюме", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "me-resume-personal-portfolio-responsive-template", - "preview_url": "https://learning-zone.github.io/website-templates/me-resume-personal-portfolio-responsive-template/" - }, - { - "id": "lz_johndoe_portfolio", - "name": "JohnDoe Portfolio", - "source": "learning-zone", - "description": "Портфолио с резюме", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "johndoe-portfolio-resume-bootstrap-template", - "preview_url": "https://learning-zone.github.io/website-templates/johndoe-portfolio-resume-bootstrap-template/" - }, - { - "id": "lz_free_portfolio_sam", - "name": "Free Portfolio", - "source": "learning-zone", - "description": "Адаптивное портфолио", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "free-portfolio-html5-responsive-website-sam", - "preview_url": "https://learning-zone.github.io/website-templates/free-portfolio-html5-responsive-website-sam/" - }, - { - "id": "h5up_read_only", - "name": "Read Only", - "source": "html5up", - "description": "Портфолио творческого агентства", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "read-only", - "preview_url": "https://html5up.net/read-only/" - }, - { - "id": "h5up_future", - "name": "Future", - "source": "html5up", - "description": "Сайт креативного студии", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "future-imperfect", - "preview_url": "https://html5up.net/future-imperfect/" - }, - { - "id": "sb_creative", - "name": "StartBootstrap Creative", - "source": "startbootstrap", - "description": "Креативное агентство", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-creative", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-creative/" - }, - { - "id": "sb_freelancer", - "name": "StartBootstrap Freelancer", - "source": "startbootstrap", - "description": "Портфолио фрилансера", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-freelancer", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-freelancer/" - }, - { - "id": "th_the_portfolio", - "name": "The Portfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/the_portfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/the_portfolio/", - "description": "HTML 5 Responsive Personal Website Template" - }, - { - "id": "th_material_dashboard_react", - "name": "Material Dashboard React", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-dashboard-react", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-dashboard-react/", - "description": "React version of Material Dashboard by Creative Tim" - }, - { - "id": "th_johndoe", - "name": "Johndoe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/JohnDoe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/JohnDoe/", - "description": "FREE One Page Responsive Portfolio Template designed with Bootstrap3, HTML5, CSS3 and jQuery." - }, - { - "id": "th_profile", - "name": "Profile", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/profile", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/profile/", - "description": "Resume Bootstrap Template Download Free" - }, - { - "id": "th_darkjoe", - "name": "Darkjoe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/DarkJoe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/DarkJoe/", - "description": "Dark Joe - Responsive One Page Personal Website Template with Bootstrap 3" - }, - { - "id": "th_developer", - "name": "Developer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Developer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Developer/", - "description": "Developer - Responsive Personal Website Template" - }, - { - "id": "th_photographer", - "name": "Photographer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Photographer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Photographer/", - "description": "Photographer - A Responsive One Page Photography Website Template with Bootstrap 3" - }, - { - "id": "th_resume_bootstrap4", - "name": "Resume Bootstrap4", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/resume-bootstrap4", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/resume-bootstrap4/", - "description": "A Bootstrap 4 resume/CV theme created by Start Bootstrap" - }, - { - "id": "th_resume_2", - "name": "Resume 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/resume-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/resume-2/", - "description": "Resume 2" - }, - { - "id": "th_creative_2", - "name": "Creative 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/creative-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/creative-2/", - "description": "Creative 2" - }, - { - "id": "th_photographer_2", - "name": "Photographer 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photographer-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photographer-2/", - "description": "Photographer 2" - }, - { - "id": "th_moonlight", - "name": "Moonlight", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/moonlight", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/moonlight/", - "description": "One page template for building a photography or portfolio site." - }, - { - "id": "th_slides_portfolio", - "name": "Slides Portfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/slides-portfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/slides-portfolio/", - "description": "Slides Portfolio" - }, - { - "id": "th_personalportfolio", - "name": "Personalportfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/personalportfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/personalportfolio/", - "description": "Personalportfolio" - }, - { - "id": "th_aircv", - "name": "Aircv", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Aircv", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Aircv/", - "description": "Professional CV Parallax Template" - }, - { - "id": "th_myportfolio", - "name": "Myportfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/myportfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/myportfolio/", - "description": "Myportfolio" - }, - { - "id": "th_personal_portfolio", - "name": "Personal Portfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/personal-portfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/personal-portfolio/", - "description": "Personal Portfolio" - }, - { - "id": "th_albedo_template", - "name": "Albedo Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Albedo-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Albedo-Template/", - "description": "Albedo Free HTML Template Powered With Bootstrap 4 for Designer Portfolio" - }, - { - "id": "th_ethereal", - "name": "Ethereal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ethereal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ethereal/", - "description": "Personal, Portfolio, and Photography HTML Template" - }, - { - "id": "th_porta1", - "name": "Porta1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/porta1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/porta1/", - "description": "Porta is a Bootstrap4 minimal portfolio template by CurlyArts, absolutely free for download !" - }, - { - "id": "th_creative", - "name": "Creative", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Creative", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Creative/", - "description": "A Responsive Template for Creative works" - }, - { - "id": "th_now_ui_kit", - "name": "Now Ui Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/now-ui-kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/now-ui-kit/", - "description": "Now UI Kit Bootstrap 4 - Designed by Invision. Coded by Creative Tim. Live Demo" - }, - { - "id": "th_portfolio", - "name": "Portfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/portfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/portfolio/", - "description": "Portfolio" - }, - { - "id": "th_creative_bundle_2024", - "name": "Creative Bundle 2024", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/creative-bundle-2024", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/creative-bundle-2024/", - "description": "Creative Bundle 2024" - }, - { - "id": "th_personal_website", - "name": "Personal Website", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Personal-Website", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Personal-Website/", - "description": "My website portfolio" - }, - { - "id": "th_material_kit_react", - "name": "Material Kit React", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-kit-react", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-kit-react/", - "description": "Material Kit React free and open source by Creative Tim & Distributed by Themewagon." - }, - { - "id": "th_pigra", - "name": "Pigra", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Pigra", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Pigra/", - "description": "Free Bootstrap 5 Portfolio Website Template" - }, - { - "id": "th_joyseno", - "name": "Joyseno", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Joyseno", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Joyseno/", - "description": "Free Responsive Portfolio Website Template" - }, - { - "id": "th_hudson", - "name": "Hudson", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Hudson", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Hudson/", - "description": "Free HTML Portfolio Website Template" - }, - { - "id": "th_ethos", - "name": "Ethos", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Ethos", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Ethos/", - "description": "Free Personal Website Template" - }, - { - "id": "th_archi_new", - "name": "Archi New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/archi-new", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/archi-new/", - "description": "Free Architecture Portfolio Template" - }, - { - "id": "th_jessica", - "name": "Jessica", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Jessica", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Jessica/", - "description": "Free Bootstrap 5 Portfolio Website Template" - }, - { - "id": "th_iportfolio", - "name": "Iportfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/iPortfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/iPortfolio/", - "description": "Free Bootstrap 5 Portfolio Website Template" - }, - { - "id": "th_myresume", - "name": "Myresume", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MyResume", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MyResume/", - "description": "Free Bootstrap 5 Resume Website Template" - }, - { - "id": "th_photofolio", - "name": "Photofolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/PhotoFolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/PhotoFolio/", - "description": "Free Bootstrap 5 Portfolio Website Template" - }, - { - "id": "th_presento", - "name": "Presento", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Presento", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Presento/", - "description": "Free Bootstrap 5 Portfolio Template" - }, - { - "id": "th_next_js_tailwind_css_portfolio_template", - "name": "Next.Js Tailwind Css Portfolio Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Next.js-Tailwind-CSS-Portfolio-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Next.js-Tailwind-CSS-Portfolio-Template/", - "description": "Next.Js Tailwind Css Portfolio Template" - }, - { - "id": "th_resume_nextjs", - "name": "Resume Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Resume-Nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Resume-Nextjs/", - "description": "Resume Nextjs" - }, - { - "id": "th_typefolio_nextjs", - "name": "Typefolio Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/typefolio-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/typefolio-nextjs/", - "description": "Typefolio – Simple Portfolio Template" - }, - { - "id": "th_ryan", - "name": "Ryan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ryan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ryan/", - "description": "Ryan - Next JS Portfolio Template" - }, - { - "id": "da_3_col_portfolio", - "name": "3 Col Portfolio", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "3-col-portfolio", - "preview_url": "https://dawidolko.github.io/Website-Templates/3-col-portfolio/", - "description": "3 Col Portfolio" - }, - { - "id": "da_free_portfolio_html5_responsive_website_sam", - "name": "Free Portfolio Html5 Responsive Website Sam", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "free-portfolio-html5-responsive-website-sam", - "preview_url": "https://dawidolko.github.io/Website-Templates/free-portfolio-html5-responsive-website-sam/", - "description": "Free Portfolio Html5 Responsive Website Sam" - }, - { - "id": "da_html5_portfolio", - "name": "Html5 Portfolio", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "html5-portfolio", - "preview_url": "https://dawidolko.github.io/Website-Templates/html5-portfolio/", - "description": "Html5 Portfolio" - }, - { - "id": "da_iam_html5_responsive_portfolio_resume_template", - "name": "Iam Html5 Responsive Portfolio Resume Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "iam-html5-responsive-portfolio-resume-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/iam-html5-responsive-portfolio-resume-template/", - "description": "Iam Html5 Responsive Portfolio Resume Template" - }, - { - "id": "da_john_bootstrap_one_page_html5_free_resume_template", - "name": "John Bootstrap One Page Html5 Free Resume Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "john-bootstrap-one-page-html5-free-resume-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/john-bootstrap-one-page-html5-free-resume-template/", - "description": "John Bootstrap One Page Html5 Free Resume Template" - }, - { - "id": "da_johndoe_portfolio_resume_bootstrap_template", - "name": "Johndoe Portfolio Resume Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "johndoe-portfolio-resume-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/johndoe-portfolio-resume-bootstrap-template/", - "description": "Johndoe Portfolio Resume Bootstrap Template" - }, - { - "id": "da_me_resume_personal_portfolio_responsive_template", - "name": "Me Resume Personal Portfolio Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "me-resume-personal-portfolio-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/me-resume-personal-portfolio-responsive-template/", - "description": "Me Resume Personal Portfolio Responsive Template" - }, - { - "id": "da_my_portfolio_two", - "name": "My Portfolio Two", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "my-portfolio-two", - "preview_url": "https://dawidolko.github.io/Website-Templates/my-portfolio-two/", - "description": "My Portfolio Two" - }, - { - "id": "da_portfolio_item", - "name": "Portfolio Item", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "portfolio-item", - "preview_url": "https://dawidolko.github.io/Website-Templates/portfolio-item/", - "description": "Portfolio Item" - }, - { - "id": "da_startbootstrap_freelancer_1_0_2", - "name": "Freelancer 1.0.2", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "startbootstrap-freelancer-1.0.2", - "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-freelancer-1.0.2/", - "description": "Freelancer 1.0.2" - }, - { - "id": "da_startbootstrap_stylish_portfolio_1_0_2", - "name": "Stylish Portfolio 1.0.2", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "startbootstrap-stylish-portfolio-1.0.2", - "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-stylish-portfolio-1.0.2/", - "description": "Stylish Portfolio 1.0.2" - }, - { - "id": "da_stylish_portfolio", - "name": "Stylish Portfolio", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "stylish-portfolio", - "preview_url": "https://dawidolko.github.io/Website-Templates/stylish-portfolio/", - "description": "Stylish Portfolio" - }, - { - "id": "da_wow_portfolio_multi_purpose_html5_template", - "name": "Wow Portfolio Multi Purpose Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "wow-portfolio-multi-purpose-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/wow-portfolio-multi-purpose-html5-template/", - "description": "Wow Portfolio Multi Purpose Html5 Template" - } - ] - }, - { - "id": "realestate", - "name": "Недвижимость и интерьер", - "icon": "home", - "templates": [ - { - "id": "lz_aerosky_realestate", - "name": "Aerosky Real Estate", - "source": "learning-zone", - "description": "Агентство недвижимости", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "aerosky-real-estate-html-responsive-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/aerosky-real-estate-html-responsive-website-template/" - }, - { - "id": "lz_bootstrap_realestate", - "name": "Bootstrap Real Estate", - "source": "learning-zone", - "description": "Портал продажи недвижимости", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "free-bootstrap-template-real-estate-my-home", - "preview_url": "https://learning-zone.github.io/website-templates/free-bootstrap-template-real-estate-my-home/" - }, - { - "id": "lz_park_city_realestate", - "name": "Park City Real Estate", - "source": "learning-zone", - "description": "Недвижимость в городе", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "park-city-bootstrap-html-real-estate-responsive-template", - "preview_url": "https://learning-zone.github.io/website-templates/park-city-bootstrap-html-real-estate-responsive-template/" - }, - { - "id": "lz_icon_realestate", - "name": "Icon Real Estate", - "source": "learning-zone", - "description": "Застройщики недвижимости", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "icon-real-estate-developers-free-responsive-html-template", - "preview_url": "https://learning-zone.github.io/website-templates/icon-real-estate-developers-free-responsive-html-template/" - }, - { - "id": "lz_real_estate_builders", - "name": "Real Estate Builders", - "source": "learning-zone", - "description": "Строители и девелоперы", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "real-estate-builders-free-responsive-website-templates-adesign", - "preview_url": "https://learning-zone.github.io/website-templates/real-estate-builders-free-responsive-website-templates-adesign/" - }, - { - "id": "h5up_landed", - "name": "Landed", - "source": "html5up", - "description": "Сайт дизайн-студии", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "landed", - "preview_url": "https://html5up.net/landed/" - }, - { - "id": "h5up_strongly_typed", - "name": "Strongly Typed", - "source": "html5up", - "description": "Портфолио типографики", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "strongly-typed", - "preview_url": "https://html5up.net/strongly-typed/" - }, - { - "id": "lz_ideal_interior", - "name": "Ideal Interior Design", - "source": "learning-zone", - "description": "Дизайн интерьера", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "ideal-interior-design-free-bootstrap-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/ideal-interior-design-free-bootstrap-website-template/" - }, - { - "id": "lz_smart_interior", - "name": "Smart Interior Designs", - "source": "learning-zone", - "description": "Интерьерный проект", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "smart-interior-designs-html5-bootstrap-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/smart-interior-designs-html5-bootstrap-web-template/" - }, - { - "id": "lz_relax_interior", - "name": "Relax Interior", - "source": "learning-zone", - "description": "Дизайн жилых помещений", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "relax-interior-free-bootstrap-responsive-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/relax-interior-free-bootstrap-responsive-website-template/" - }, - { - "id": "th_property", - "name": "Property", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/property", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/property/", - "description": "Property" - }, - { - "id": "th_shionhouse", - "name": "Shionhouse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/shionhouse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/shionhouse/", - "description": "Shionhouse" - }, - { - "id": "th_datawarehouse", - "name": "Datawarehouse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dataWarehouse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dataWarehouse/", - "description": "Datawarehouse" - }, - { - "id": "th_homebuilder", - "name": "Homebuilder", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/homebuilder", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/homebuilder/", - "description": "Homebuilder" - }, - { - "id": "th_interior", - "name": "Interior", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/interior", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/interior/", - "description": "Interior" - }, - { - "id": "th_theinterior", - "name": "Theinterior", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/theinterior", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/theinterior/", - "description": "Theinterior" - }, - { - "id": "th_warehouse", - "name": "Warehouse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/warehouse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/warehouse/", - "description": "Warehouse" - }, - { - "id": "th_interior_design", - "name": "Interior Design", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/interior-design", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/interior-design/", - "description": "Interior Design" - }, - { - "id": "th_delux_interior", - "name": "Delux Interior", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/delux-interior", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/delux-interior/", - "description": "Delux Interior" - }, - { - "id": "th_upconstruction", - "name": "Upconstruction", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/UpConstruction", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/UpConstruction/", - "description": "Upconstruction" - }, - { - "id": "th_teahouse", - "name": "Teahouse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/TeaHouse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/TeaHouse/", - "description": "Teahouse" - }, - { - "id": "th_vaso", - "name": "Vaso", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vaso", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vaso/", - "description": "Free bootstrap 5 interior Decore Website Template" - }, - { - "id": "th_property_nextjs", - "name": "Property Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/property-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/property-nextjs/", - "description": "Property Nextjs" - }, - { - "id": "da_ideal_interior_design_free_bootstrap_website_template", - "name": "Ideal Interior Design Free Bootstrap Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "ideal-interior-design-free-bootstrap-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/ideal-interior-design-free-bootstrap-website-template/", - "description": "Ideal Interior Design Free Bootstrap Website Template" - }, - { - "id": "da_real_estate_builders_free_responsive_website_templates_ad", - "name": "Real Estate Builders Free Responsive Website Templates Adesign", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "real-estate-builders-free-responsive-website-templates-adesign", - "preview_url": "https://dawidolko.github.io/Website-Templates/real-estate-builders-free-responsive-website-templates-adesign/", - "description": "Real Estate Builders Free Responsive Website Templates Adesign" - }, - { - "id": "da_relax_interior_free_bootstrap_responsive_website_template", - "name": "Relax Interior Free Bootstrap Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "relax-interior-free-bootstrap-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/relax-interior-free-bootstrap-responsive-website-template/", - "description": "Relax Interior Free Bootstrap Responsive Website Template" - }, - { - "id": "da_styleinn_bootstrap_interior_design_website_template", - "name": "Styleinn Bootstrap Interior Design Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "styleinn-bootstrap-interior-design-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/styleinn-bootstrap-interior-design-website-template/", - "description": "Styleinn Bootstrap Interior Design Website Template" - } - ] - }, - { - "id": "restaurant", - "name": "Рестораны и еда", - "icon": "utensils", - "templates": [ - { - "id": "lz_coffee_shop", - "name": "Coffee Shop", - "source": "learning-zone", - "description": "Сайт кофейни", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "coffee-shop-free-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/coffee-shop-free-html5-template/" - }, - { - "id": "lz_golden_hotel_restaurant", - "name": "Golden Hotel Restaurant", - "source": "learning-zone", - "description": "Ресторан отеля", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "golden-hotel-free-html5-bootstrap-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/golden-hotel-free-html5-bootstrap-web-template/" - }, - { - "id": "lz_bestro_restaurant", - "name": "Bestro Restaurant", - "source": "learning-zone", - "description": "Шаблон ресторана на Bootstrap", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "bestro-restaurant-bootstrap-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/bestro-restaurant-bootstrap-html5-template/" - }, - { - "id": "lz_eat_restaurant", - "name": "Eat Restaurant", - "source": "learning-zone", - "description": "Сайт ресторана с меню", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "eat-restaurant-bootstrap-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/eat-restaurant-bootstrap-html5-template/" - }, - { - "id": "th_restaurant_2", - "name": "Restaurant 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/restaurant-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/restaurant-2/", - "description": "Restaurant 2" - }, - { - "id": "th_restaurant_html_template", - "name": "Restaurant Html Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/restaurant-html-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/restaurant-html-template/", - "description": "Restaurant Html Template" - }, - { - "id": "th_pizza", - "name": "Pizza", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pizza", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pizza/", - "description": "Pizza" - }, - { - "id": "th_foodee", - "name": "Foodee", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foodee", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foodee/", - "description": "Free Restaurant Template Download" - }, - { - "id": "th_vegefoods", - "name": "Vegefoods", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vegefoods", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vegefoods/", - "description": "Vegefoods" - }, - { - "id": "th_coffee", - "name": "Coffee", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/coffee", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/coffee/", - "description": "Coffee" - }, - { - "id": "th_meatking_1", - "name": "Meatking 1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MeatKing-1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MeatKing-1/", - "description": "Meatking - A Restaurant Website Design Template with Bootstrap 3" - }, - { - "id": "th_restaurantly", - "name": "Restaurantly", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/restaurantly", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/restaurantly/", - "description": "Restaurantly" - }, - { - "id": "th_foody2", - "name": "Foody2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foody2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foody2/", - "description": "Foody2" - }, - { - "id": "th_foodwagon", - "name": "Foodwagon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foodwagon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foodwagon/", - "description": "Foodwagon" - }, - { - "id": "th_delfood", - "name": "Delfood", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/delfood", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/delfood/", - "description": "Delfood" - }, - { - "id": "th_coffee1", - "name": "Coffee1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/coffee1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/coffee1/", - "description": "Coffee1" - }, - { - "id": "th_klassy_cafe", - "name": "Klassy Cafe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/klassy-cafe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/klassy-cafe/", - "description": "Klassy Cafe" - }, - { - "id": "th_barberz", - "name": "Barberz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/barberz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/barberz/", - "description": "Barberz" - }, - { - "id": "th_food_funday", - "name": "Food Funday", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/food-funday", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/food-funday/", - "description": "Food Funday" - }, - { - "id": "th_grandcoffee", - "name": "Grandcoffee", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/grandcoffee", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/grandcoffee/", - "description": "Grandcoffee" - }, - { - "id": "th_taste", - "name": "Taste", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/taste", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/taste/", - "description": "Bootstrap 4 restaurant template with menu creating option." - }, - { - "id": "th_foodeiblog", - "name": "Foodeiblog", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foodeiblog", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foodeiblog/", - "description": "Foodeiblog" - }, - { - "id": "th_allfood", - "name": "Allfood", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/allfood", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/allfood/", - "description": "Allfood" - }, - { - "id": "th_touche", - "name": "Touche", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/touche", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/touche/", - "description": "Free restaurant template that has a eye-soothing design and parallax effects" - }, - { - "id": "th_tasty_recipes", - "name": "Tasty Recipes", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tasty-recipes", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tasty-recipes/", - "description": "Tasty Recipes" - }, - { - "id": "th_foodfun", - "name": "Foodfun", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foodfun", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foodfun/", - "description": "Foodfun" - }, - { - "id": "th_mamma_s_kitchen", - "name": "Mamma S Kitchen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Mamma-s-Kitchen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Mamma-s-Kitchen/", - "description": "A fully responsive restaurant template, developed by bootstrap 3" - }, - { - "id": "th_barberx", - "name": "Barberx", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/BarberX", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/BarberX/", - "description": "Barberx" - }, - { - "id": "th_foody", - "name": "Foody", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foody", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foody/", - "description": "Foody" - }, - { - "id": "th_foodque", - "name": "Foodque", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foodque", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foodque/", - "description": "A restaurant website template with creative design and fluid layout." - }, - { - "id": "th_meatking", - "name": "Meatking", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MeatKing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MeatKing/", - "description": "Meatking - A Restaurant Website Design Template with Bootstrap 3" - }, - { - "id": "th_restaurant", - "name": "Restaurant", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/restaurant", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/restaurant/", - "description": "Free Tailwind CSS Restaurant Landing Page" - }, - { - "id": "da_bestro_restaurant_bootstrap_html5_template", - "name": "Bestro Restaurant Bootstrap Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "bestro-restaurant-bootstrap-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/bestro-restaurant-bootstrap-html5-template/", - "description": "Bestro Restaurant Bootstrap Html5 Template" - }, - { - "id": "da_eat_restaurant_bootstrap_html5_template", - "name": "Eat Restaurant Bootstrap Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "eat-restaurant-bootstrap-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/eat-restaurant-bootstrap-html5-template/", - "description": "Eat Restaurant Bootstrap Html5 Template" - }, - { - "id": "da_free_bootstrap_template_restaurant_website_treehut", - "name": "Free Bootstrap Template Restaurant Website Treehut", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "free-bootstrap-template-restaurant-website-treehut", - "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-restaurant-website-treehut/", - "description": "Free Bootstrap Template Restaurant Website Treehut" - }, - { - "id": "da_simple_sidebar", - "name": "Simple Sidebar", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "simple-sidebar", - "preview_url": "https://dawidolko.github.io/Website-Templates/simple-sidebar/", - "description": "Simple Sidebar" - } - ] - }, - { - "id": "landing", - "name": "Лендинги", - "icon": "rocket", - "templates": [ - { - "id": "h5up_big_picture", - "name": "Big Picture", - "source": "html5up", - "description": "Одностраничный лендинг с полноэкранными изображениями", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "big-picture", - "preview_url": "https://html5up.net/big-picture/" - }, - { - "id": "h5up_eventually", - "name": "Eventually", - "source": "html5up", - "description": "Лендинг со счётчиком запуска", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "eventually", - "preview_url": "https://html5up.net/eventually/" - }, - { - "id": "h5up_escape_velocity", - "name": "Escape Velocity", - "source": "html5up", - "description": "Креативный лендинг с необычным дизайном", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "escape-velocity", - "preview_url": "https://html5up.net/escape-velocity/" - }, - { - "id": "lz_mobile_app_landing", - "name": "Mobile App Landing Page", - "source": "learning-zone", - "description": "Лендинг для мобильного приложения", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "mobile-app-free-one-page-responsive-html5-landing-page", - "preview_url": "https://learning-zone.github.io/website-templates/mobile-app-free-one-page-responsive-html5-landing-page/" - }, - { - "id": "lz_smartapp_landing", - "name": "SmartApp Landing", - "source": "learning-zone", - "description": "Современный лендинг приложения", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "smartapp-free-html5-landing-page", - "preview_url": "https://learning-zone.github.io/website-templates/smartapp-free-html5-landing-page/" - }, - { - "id": "lz_brand_app_landing", - "name": "Brand App Landing", - "source": "learning-zone", - "description": "Лендинг для брендового приложения", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "brand-html5-app-landing-page-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/brand-html5-app-landing-page-responsive-web-template/" - }, - { - "id": "lz_line_app_landing", - "name": "Line App Landing", - "source": "learning-zone", - "description": "Минималистичный лендинг приложения", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "line-free-app-landing-page-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/line-free-app-landing-page-responsive-web-template/" - }, - { - "id": "sb_landing_page", - "name": "StartBootstrap Landing Page", - "source": "startbootstrap", - "description": "Универсальный адаптивный лендинг", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-landing-page", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-landing-page/" - }, - { - "id": "th_imminent", - "name": "Imminent", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Imminent", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Imminent/", - "description": "Free 3D Parallax Responsive Coming Soon Template" - }, - { - "id": "th_flameonepage", - "name": "Flameonepage", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/flameonepage", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/flameonepage/", - "description": "Flameonepage" - }, - { - "id": "th_layla", - "name": "Layla", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/layla", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/layla/", - "description": "Coming Soon Template" - }, - { - "id": "th_awesome", - "name": "Awesome", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Awesome", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Awesome/", - "description": "Awesome - A Free Responsive Coming Soon Template" - }, - { - "id": "th_deskapp2", - "name": "Deskapp2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/deskapp2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/deskapp2/", - "description": "Deskapp2" - }, - { - "id": "th_polo", - "name": "Polo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/polo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/polo/", - "description": "POLO - Responsive App Landing Page Template with Bootstrap 3" - }, - { - "id": "th_brandi_onepage_html5_business_template", - "name": "Brandi Onepage Html5 Business Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/brandi-Onepage-HTML5-Business-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/brandi-Onepage-HTML5-Business-Template/", - "description": "Brandi-Free-One-Page-Responsive-HTML5-Business-Template" - }, - { - "id": "th_mobapp", - "name": "Mobapp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mobapp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mobapp/", - "description": "MobApp is a Bootstrap 4 app landing template to make your landing page creation more comfortable. It's very bright with colors and ready-to-go to craft a website with simple steps." - }, - { - "id": "th_fitapp", - "name": "Fitapp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/FitApp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/FitApp/", - "description": "Fitapp" - }, - { - "id": "th_coming2live", - "name": "Coming2Live", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/coming2live", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/coming2live/", - "description": "10 demos available with this free coming soon website template" - }, - { - "id": "th_small_apps", - "name": "Small Apps", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/small-apps", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/small-apps/", - "description": "Small Apps" - }, - { - "id": "th_count", - "name": "Count", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/count", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/count/", - "description": "Free coming soon website template holding three demo variation. Built with Bootstrap. Download from the link now." - }, - { - "id": "th_wedding", - "name": "Wedding", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wedding", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wedding/", - "description": "Wedding is a free HTML website template for wedding and events with countdown timer and engaging design layout" - }, - { - "id": "th_applab_2", - "name": "Applab 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/applab_2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/applab_2/", - "description": "Applab 2" - }, - { - "id": "th_append", - "name": "Append", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/append", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/append/", - "description": "Append" - }, - { - "id": "th_season", - "name": "Season", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Season", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Season/", - "description": "Coming Soon Responsive HTML Template" - }, - { - "id": "th_slides_animated_landing_page", - "name": "Slides Animated Landing Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/slides-animated-landing-page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/slides-animated-landing-page/", - "description": "Slides Animated Landing Page" - }, - { - "id": "th_lucy", - "name": "Lucy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lucy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lucy/", - "description": "Best Free Responsive Bootstrap App Landing Page Lucy" - }, - { - "id": "th_woolanding", - "name": "Woolanding", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wooLanding", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wooLanding/", - "description": "Woolanding" - }, - { - "id": "th_appru", - "name": "Appru", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/appru", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/appru/", - "description": "Appru" - }, - { - "id": "th_appco", - "name": "Appco", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/appco", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/appco/", - "description": "Appco" - }, - { - "id": "th_evento", - "name": "Evento", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Evento", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Evento/", - "description": "A Function Landing Page " - }, - { - "id": "th_lazyfox", - "name": "Lazyfox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Lazyfox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Lazyfox/", - "description": "HTML5 Single page landing template" - }, - { - "id": "th_avilon", - "name": "Avilon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/avilon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/avilon/", - "description": "Free landing page template made with Bootstrap 4." - }, - { - "id": "th_codrops_scribbler", - "name": "Codrops Scribbler", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/codrops-scribbler", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/codrops-scribbler/", - "description": "A responsive HTML template for coding projects with a clean, user friendly design. Crafted with the latest web technologies, the template is suitable for landing pages and documentations." - }, - { - "id": "th_rain", - "name": "Rain", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Rain", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Rain/", - "description": "Rain - Free Responsive OnePage App Landing Page Template" - }, - { - "id": "th_slides_horizontal_scroll_landing_page", - "name": "Slides Horizontal Scroll Landing Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/slides-horizontal-scroll-landing-page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/slides-horizontal-scroll-landing-page/", - "description": "Slides Horizontal Scroll Landing Page" - }, - { - "id": "th_snappy", - "name": "Snappy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/snappy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/snappy/", - "description": "Snappy - A HTML5 photography website template" - }, - { - "id": "th_appetizer", - "name": "Appetizer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/appetizer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/appetizer/", - "description": "Appetizer" - }, - { - "id": "th_applab", - "name": "Applab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/applab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/applab/", - "description": "Applab" - }, - { - "id": "th_apex_app", - "name": "Apex App", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/apex_app", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/apex_app/", - "description": "Apex App" - }, - { - "id": "th_metronic_one_page_2", - "name": "Metronic One Page 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Metronic-One-Page-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Metronic-One-Page-2/", - "description": "Metronic One Page 2" - }, - { - "id": "th_webapp", - "name": "Webapp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/webapp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/webapp/", - "description": "Webapp" - }, - { - "id": "th_slides_app_landing_page", - "name": "Slides App Landing Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/slides-app-landing-page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/slides-app-landing-page/", - "description": "Slides App Landing Page" - }, - { - "id": "th_appli", - "name": "Appli", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/appli", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/appli/", - "description": "Appli" - }, - { - "id": "th_landing_a", - "name": "Landing A", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/landing-a", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/landing-a/", - "description": "Landing A" - }, - { - "id": "th_nova", - "name": "Nova", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Nova", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Nova/", - "description": "Free one page HTML template for apps showcasing" - }, - { - "id": "th_app", - "name": "App", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/app", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/app/", - "description": "App" - }, - { - "id": "th_lifetrackr", - "name": "Lifetrackr", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lifetrackr", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lifetrackr/", - "description": "Responsive Free App Landing Page Template " - }, - { - "id": "th_appley", - "name": "Appley", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/appley", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/appley/", - "description": "Appley" - }, - { - "id": "th_proapp", - "name": "Proapp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/proapp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/proapp/", - "description": "Proapp" - }, - { - "id": "th_mobiapp", - "name": "Mobiapp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mobiapp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mobiapp/", - "description": "Mobiapp" - }, - { - "id": "th_metronic_one_page", - "name": "Metronic One Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Metronic-One-Page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Metronic-One-Page/", - "description": "Metronic One Page" - }, - { - "id": "th_unapp", - "name": "Unapp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/unapp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/unapp/", - "description": "Unapp" - }, - { - "id": "th_soft_landing", - "name": "Soft Landing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/soft-landing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/soft-landing/", - "description": "Soft Landing" - }, - { - "id": "th_mobile_app", - "name": "Mobile App", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mobile-app", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mobile-app/", - "description": "Mobile App" - }, - { - "id": "th_applus", - "name": "Applus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/applus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/applus/", - "description": "App Plus Responsive One Page Template" - }, - { - "id": "th_laslesvpn", - "name": "Laslesvpn", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/LaslesVPN", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/LaslesVPN/", - "description": "Bootstrap 5 Landing Page Template" - }, - { - "id": "th_saascandy", - "name": "Saascandy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/SaasCandy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/SaasCandy/", - "description": "Saascandy" - }, - { - "id": "th_react_app_template", - "name": "React App Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/react-app-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/react-app-template/", - "description": "An ideal pre-configured create-react-app template for your next ReactJS Project." - }, - { - "id": "th_imminent_new", - "name": "Imminent New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/imminent-new", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/imminent-new/", - "description": "Free Coming Soon Page Template" - }, - { - "id": "th_rentiz", - "name": "Rentiz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rentiz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rentiz/", - "description": "Free HTML Landing Page Template" - }, - { - "id": "th_append_new", - "name": "Append New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Append-New", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Append-New/", - "description": "Free Bootstrap Website Template" - }, - { - "id": "th_bootslander", - "name": "Bootslander", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Bootslander", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Bootslander/", - "description": "Free Bootstrap 5 Landing Page Template" - }, - { - "id": "th_ilanding", - "name": "Ilanding", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/iLanding", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/iLanding/", - "description": "Free Bootstrap 5 Landing Page Template" - }, - { - "id": "th_onepage", - "name": "Onepage", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/OnePage", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/OnePage/", - "description": "Free Booststrap 5 Website Template" - }, - { - "id": "th_desgy", - "name": "Desgy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Desgy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Desgy/", - "description": "Free Tailwind-Next.js Landing Page Template" - }, - { - "id": "th_windmill_saas", - "name": "Windmill Saas", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/windmill-saas", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/windmill-saas/", - "description": "Windmill Saas" - }, - { - "id": "th_nextjs_tailwind_event_landing_page", - "name": "Nextjs Tailwind Event Landing Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nextjs-tailwind-event-landing-page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nextjs-tailwind-event-landing-page/", - "description": "Nextjs Tailwind Event Landing Page" - }, - { - "id": "th_nextjs_tailwind_app_presentation_page", - "name": "Nextjs Tailwind App Presentation Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/NextJS-Tailwind-App-Presentation-Page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/NextJS-Tailwind-App-Presentation-Page/", - "description": "Nextjs Tailwind App Presentation Page" - }, - { - "id": "th_saasland", - "name": "Saasland", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/saasland", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/saasland/", - "description": "Saasland" - }, - { - "id": "th_saaspal", - "name": "Saaspal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/SaaSpal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/SaaSpal/", - "description": "Saaspal" - }, - { - "id": "th_appvila", - "name": "Appvila", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Appvila", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Appvila/", - "description": "Appvila" - }, - { - "id": "th_saasintro", - "name": "Saasintro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/SaaSintro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/SaaSintro/", - "description": "Saasintro" - }, - { - "id": "th_paidin", - "name": "Paidin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/paidin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/paidin/", - "description": "Paidin - Free NextJs Landing Page Template with App Directory Routing" - }, - { - "id": "th_landingzero", - "name": "Landingzero", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/landingzero", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/landingzero/", - "description": "Landingzero" - }, - { - "id": "th_laslesvpn_nextjs", - "name": "Laslesvpn Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/LaslesVPN-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/LaslesVPN-nextjs/", - "description": "LaslesVPN - An Open Source Landingpage For VPN or Apps." - }, - { - "id": "th_rainblur_landing_page", - "name": "Rainblur Landing Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Rainblur-Landing-Page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Rainblur-Landing-Page/", - "description": "Rainblur Landing Page" - }, - { - "id": "th_agent_ai", - "name": "Agent Ai", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/agent-ai", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/agent-ai/", - "description": "AI Agent – Free Next.js Landing Page Template" - }, - { - "id": "th_saas", - "name": "Saas", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/saas", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/saas/", - "description": "Saas - Tailwind One Page Template" - }, - { - "id": "th_lingare", - "name": "Lingare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lingare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lingare/", - "description": "Lingare - Fashion tailwind landing page" - }, - { - "id": "th_newsletter", - "name": "Newsletter", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/newsletter", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/newsletter/", - "description": "Newsletter - Tailwind landing page Template for your Newsletter" - }, - { - "id": "th_skilline", - "name": "Skilline", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/skilline", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/skilline/", - "description": "Skilline - Landing Page" - }, - { - "id": "da_brand_html5_app_landing_page_responsive_web_template", - "name": "Brand Html5 App Landing Page Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "brand-html5-app-landing-page-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/brand-html5-app-landing-page-responsive-web-template/", - "description": "Brand Html5 App Landing Page Responsive Web Template" - }, - { - "id": "da_clouds_html5_multipurpose_landing_page_template", - "name": "Clouds Html5 Multipurpose Landing Page Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "clouds-html5-multipurpose-landing-page-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/clouds-html5-multipurpose-landing-page-template/", - "description": "Clouds Html5 Multipurpose Landing Page Template" - }, - { - "id": "da_foodz_mobile_app_bootstrap_landing_page", - "name": "Foodz Mobile App Bootstrap Landing Page", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "foodz-mobile-app-bootstrap-landing-page", - "preview_url": "https://dawidolko.github.io/Website-Templates/foodz-mobile-app-bootstrap-landing-page/", - "description": "Foodz Mobile App Bootstrap Landing Page" - }, - { - "id": "da_line_free_app_landing_page_responsive_web_template", - "name": "Line Free App Landing Page Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "line-free-app-landing-page-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/line-free-app-landing-page-responsive-web-template/", - "description": "Line Free App Landing Page Responsive Web Template" - }, - { - "id": "da_mobile_app_free_one_page_responsive_html5_landing_page", - "name": "Mobile App Free One Page Responsive Html5 Landing Page", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "mobile-app-free-one-page-responsive-html5-landing-page", - "preview_url": "https://dawidolko.github.io/Website-Templates/mobile-app-free-one-page-responsive-html5-landing-page/", - "description": "Mobile App Free One Page Responsive Html5 Landing Page" - }, - { - "id": "da_mobile_app_landing_page_html5_template", - "name": "Mobile App Landing Page Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "mobile-app-landing-page-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/mobile-app-landing-page-html5-template/", - "description": "Mobile App Landing Page Html5 Template" - }, - { - "id": "da_one_page_wonder", - "name": "One Page Wonder", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "one-page-wonder", - "preview_url": "https://dawidolko.github.io/Website-Templates/one-page-wonder/", - "description": "One Page Wonder" - }, - { - "id": "da_skytouch_onepage_bootstrap_responsive_web_template", - "name": "Skytouch Onepage Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "skytouch-onepage-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/skytouch-onepage-bootstrap-responsive-web-template/", - "description": "Skytouch Onepage Bootstrap Responsive Web Template" - }, - { - "id": "da_smartapp_free_html5_landing_page", - "name": "Smartapp Free Html5 Landing Page", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "smartapp-free-html5-landing-page", - "preview_url": "https://dawidolko.github.io/Website-Templates/smartapp-free-html5-landing-page/", - "description": "Smartapp Free Html5 Landing Page" - } - ] - }, - { - "id": "technology", - "name": "Технологии и IT", - "icon": "chart-bar", - "templates": [ - { - "id": "h5up_hyperspace", - "name": "Hyperspace", - "source": "html5up", - "description": "Сайт облачного хостинга", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "hyperspace", - "preview_url": "https://html5up.net/hyperspace/" - }, - { - "id": "h5up_future_imperfect", - "name": "Future Imperfect", - "source": "html5up", - "description": "Блог с боковой панелью", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "future-imperfect", - "preview_url": "https://html5up.net/future-imperfect/" - }, - { - "id": "lz_cloud_hosting", - "name": "Cloud Hosting", - "source": "learning-zone", - "description": "Облачный хостинг", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "cloud-hosting-free-bootstrap-responsive-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/cloud-hosting-free-bootstrap-responsive-website-template/" - }, - { - "id": "lz_fiber_hosting", - "name": "Fiber Hosting", - "source": "learning-zone", - "description": "Высокоскоростной хостинг", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "fiber-hosting-bootstrap-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/fiber-hosting-bootstrap-website-template/" - }, - { - "id": "lz_speed_hosting", - "name": "Speed Hosting", - "source": "learning-zone", - "description": "Быстрый веб-хостинг", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "speed-hosting-bootstrap-free-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/speed-hosting-bootstrap-free-html5-template/" - }, - { - "id": "lz_idata_hosting", - "name": "IData Hosting", - "source": "learning-zone", - "description": "Хостинг и облачные услуги", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "idata-hosting-free-bootstrap-responsive-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/idata-hosting-free-bootstrap-responsive-website-template/" - }, - { - "id": "h5up_solid_state", - "name": "Solid State", - "source": "html5up", - "description": "Панель управления", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "solid-state", - "preview_url": "https://html5up.net/solid-state/" - }, - { - "id": "h5up_spectral", - "name": "Spectral", - "source": "html5up", - "description": "Администраторская панель", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "spectral", - "preview_url": "https://html5up.net/spectral/" - }, - { - "id": "h5up_stellar", - "name": "Stellar", - "source": "html5up", - "description": "Интерфейс администратора", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "stellar", - "preview_url": "https://html5up.net/stellar/" - }, - { - "id": "h5up_tessellate", - "name": "Tessellate", - "source": "html5up", - "description": "Модульная админ-панель", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "tessellate", - "preview_url": "https://html5up.net/tessellate/" - }, - { - "id": "h5up_txt", - "name": "TXT", - "source": "html5up", - "description": "Текстовый интерфейс управления", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "txt", - "preview_url": "https://html5up.net/txt/" - }, - { - "id": "h5up_verti", - "name": "Verti", - "source": "html5up", - "description": "Вертикальная панель управления", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "verti", - "preview_url": "https://html5up.net/verti/" - }, - { - "id": "h5up_zerofour", - "name": "ZeroFour", - "source": "html5up", - "description": "Современная админ-панель", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "zerofour", - "preview_url": "https://html5up.net/zerofour/" - }, - { - "id": "h5up_parallelism", - "name": "Parallelism", - "source": "html5up", - "description": "Дашборд управления", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "parallelism", - "preview_url": "https://html5up.net/parallelism/" - }, - { - "id": "lz_dream_admin", - "name": "Dream Admin", - "source": "learning-zone", - "description": "Админ-панель на Bootstrap", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "free-bootstrap-admin-template-dream", - "preview_url": "https://learning-zone.github.io/website-templates/free-bootstrap-admin-template-dream/" - }, - { - "id": "lz_sb_admin", - "name": "SB Admin", - "source": "learning-zone", - "description": "Простая админ-панель", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "sb-admin", - "preview_url": "https://learning-zone.github.io/website-templates/sb-admin/" - }, - { - "id": "lz_sb_admin_2", - "name": "SB Admin 2", - "source": "learning-zone", - "description": "Продвинутая админ-панель", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "sb-admin-2", - "preview_url": "https://learning-zone.github.io/website-templates/sb-admin-2/" - }, - { - "id": "lz_insight_admin", - "name": "Insight Admin", - "source": "learning-zone", - "description": "Аналитическая панель управления", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "insight-free-bootstrap-html5-admin-template", - "preview_url": "https://learning-zone.github.io/website-templates/insight-free-bootstrap-html5-admin-template/" - }, - { - "id": "lz_hybrid_admin", - "name": "Hybrid Admin", - "source": "learning-zone", - "description": "Гибридная админ-панель", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "hybrid-bootstrap-admin-template", - "preview_url": "https://learning-zone.github.io/website-templates/hybrid-bootstrap-admin-template/" - }, - { - "id": "sb_admin_panel", - "name": "StartBootstrap SB Admin", - "source": "startbootstrap", - "description": "Универсальная админ-панель", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-sb-admin", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-sb-admin/" - }, - { - "id": "th_purpleadmin_free_admin_template", - "name": "Purpleadmin Free Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/PurpleAdmin-Free-Admin-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/PurpleAdmin-Free-Admin-Template/", - "description": "Purpleadmin Free Admin Template" - }, - { - "id": "th_ready_bootstrap_dashboard", - "name": "Ready Bootstrap Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Ready-Bootstrap-Dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Ready-Bootstrap-Dashboard/", - "description": "Free Bootstrap 4 Admin Dashboard" - }, - { - "id": "th_stellar", - "name": "Stellar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Stellar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Stellar/", - "description": "Stellar is completely based on the latest version of Bootstrap 4. Stellar Admin is designed to reflect the simplicity and svelte of the components and UI elements and coded to perfection with well-organized code." - }, - { - "id": "th_adminlte", - "name": "Adminlte", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adminLTE", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adminLTE/", - "description": "Adminlte" - }, - { - "id": "th_eliteadminlite", - "name": "Eliteadminlite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eliteadminlite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eliteadminlite/", - "description": "Eliteadminlite" - }, - { - "id": "th_corona_free_dark_bootstrap_admin_template", - "name": "Corona Free Dark Bootstrap Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/corona-free-dark-bootstrap-admin-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/corona-free-dark-bootstrap-admin-template/", - "description": "Free dark admin template based on Bootstrap 4." - }, - { - "id": "th_matrix_admin", - "name": "Matrix Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/matrix-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/matrix-admin/", - "description": "Matrix Admin" - }, - { - "id": "th_atlantis_lite", - "name": "Atlantis Lite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Atlantis-Lite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Atlantis-Lite/", - "description": "Free Bootstrap 4 Admin Dashboard" - }, - { - "id": "th_modular_admin", - "name": "Modular Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/modular-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/modular-admin/", - "description": "Bootstrap 4 Free Admin Template. " - }, - { - "id": "th_admincast", - "name": "Admincast", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/admincast", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/admincast/", - "description": "Admincast" - }, - { - "id": "th_adminkit", - "name": "Adminkit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adminkit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adminkit/", - "description": "AdminKit is an free & open-source HTML dashboard & admin template based on Bootstrap 5" - }, - { - "id": "th_ngx_admin", - "name": "Ngx Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ngx-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ngx-admin/", - "description": "Admin dashboard template based on Angular 4+, Bootstrap 4 (previously known as ng2-admin)" - }, - { - "id": "th_elaadmin", - "name": "Elaadmin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elaadmin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elaadmin/", - "description": "A clean & completely free Bootstrap 4 admin dashboard template" - }, - { - "id": "th_sb_admin", - "name": "Sb Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sb-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sb-admin/", - "description": "A free, open source, Bootstrap admin theme created by Start Bootstrap" - }, - { - "id": "th_coreui_free_bootstrap_admin_template", - "name": "Coreui Free Bootstrap Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/CoreUI-Free-Bootstrap-Admin-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/CoreUI-Free-Bootstrap-Admin-Template/", - "description": "CoreUI is Bootstrap 4 based admin template which is built with Angular2, AngularJS, React.js & Vue.js support." - }, - { - "id": "th_tabler", - "name": "Tabler", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tabler", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tabler/", - "description": "Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap 4" - }, - { - "id": "th_v_dashboard", - "name": "V Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/v-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/v-dashboard/", - "description": "V Dashboard" - }, - { - "id": "th_polluxui_free_admin_template", - "name": "Polluxui Free Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/polluxui-free-admin-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/polluxui-free-admin-template/", - "description": "PolluxUI Free Bootstrap Admin Dashboard Template" - }, - { - "id": "th_material_dashboard_2", - "name": "Material Dashboard 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-dashboard-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-dashboard-2/", - "description": "Material Dashboard 2" - }, - { - "id": "th_celestialadmin_free_admin_template", - "name": "Celestialadmin Free Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/celestialAdmin-free-admin-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/celestialAdmin-free-admin-template/", - "description": "Celestial Free Bootstrap Admin Dashboard Template" - }, - { - "id": "th_breeze_free_bootstrap_admin_template", - "name": "Breeze Free Bootstrap Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Breeze-Free-Bootstrap-Admin-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Breeze-Free-Bootstrap-Admin-Template/", - "description": "Free admin dashboard with Bootstrap 4" - }, - { - "id": "th_admin_one", - "name": "Admin One", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/admin-one", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/admin-one/", - "description": "Admin One" - }, - { - "id": "th_windmill_dashboard", - "name": "Windmill Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/windmill-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/windmill-dashboard/", - "description": "Windmill Dashboard" - }, - { - "id": "th_star_admin2_free_admin_template", - "name": "Star Admin2 Free Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/star-admin2-free-admin-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/star-admin2-free-admin-template/", - "description": "Star-Admin-2- Free-Bootstrap-Admin-Template" - }, - { - "id": "th_ruang_admin", - "name": "Ruang Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ruang-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ruang-admin/", - "description": "Ruang Admin" - }, - { - "id": "th_stisla_1", - "name": "Stisla 1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stisla-1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stisla-1/", - "description": "Free Bootstrap Admin Template" - }, - { - "id": "th_seomaster", - "name": "Seomaster", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/seomaster", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/seomaster/", - "description": "Seomaster" - }, - { - "id": "th_admin", - "name": "Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/admin/", - "description": "Admin" - }, - { - "id": "th_argon_dashboard", - "name": "Argon Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/argon-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/argon-dashboard/", - "description": "Argon Dashboard" - }, - { - "id": "th_digital_1", - "name": "Digital 1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/digital-1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/digital-1/", - "description": "Digital 1" - }, - { - "id": "th_seo_dream", - "name": "Seo Dream", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/seo-dream", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/seo-dream/", - "description": "Seo Dream" - }, - { - "id": "th_k_wd_dashboard", - "name": "K Wd Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/k-wd-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/k-wd-dashboard/", - "description": "K Wd Dashboard" - }, - { - "id": "th_startbootstrap_sb_admin_2", - "name": "Sb Admin 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/startbootstrap-sb-admin-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/startbootstrap-sb-admin-2/", - "description": "A free, open source, Bootstrap admin theme created by Start Bootstrap" - }, - { - "id": "th_marutiadmin", - "name": "Marutiadmin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/marutiadmin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/marutiadmin/", - "description": "Marutiadmin" - }, - { - "id": "th_gradient_able_free_bootstrap_admin_template", - "name": "Gradient Able Free Bootstrap Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Gradient-Able-free-bootstrap-admin-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Gradient-Able-free-bootstrap-admin-template/", - "description": "Gradient Able Free Bootstrap Admin Template" - }, - { - "id": "th_plus_admin", - "name": "Plus Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/plus-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/plus-admin/", - "description": "Plus Admin" - }, - { - "id": "th_adminbsbmaterialdesign", - "name": "Adminbsbmaterialdesign", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/AdminBSBMaterialDesign", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/AdminBSBMaterialDesign/", - "description": "Free Bootstrap 3 admin dashboard template made with Material Design." - }, - { - "id": "th_kiaalap", - "name": "Kiaalap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kiaalap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kiaalap/", - "description": "Free admin dashboard template" - }, - { - "id": "th_seogram", - "name": "Seogram", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/seogram", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/seogram/", - "description": "Seogram" - }, - { - "id": "th_elegantadminlite", - "name": "Elegantadminlite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elegantadminlite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elegantadminlite/", - "description": "Elegantadminlite" - }, - { - "id": "th_concept", - "name": "Concept", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/concept", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/concept/", - "description": "Free Bootstrap 4 admin dashboard template" - }, - { - "id": "th_themekit", - "name": "Themekit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/themekit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/themekit/", - "description": "Bootstrap 4 admin template." - }, - { - "id": "th_adminx", - "name": "Adminx", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/AdminX", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/AdminX/", - "description": "AdminX – a free and open source admin control panel based on Bootstrap 4.x" - }, - { - "id": "th_ecohosting", - "name": "Ecohosting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ecohosting", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ecohosting/", - "description": "Ecohosting" - }, - { - "id": "th_adminpro", - "name": "Adminpro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adminpro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adminpro/", - "description": "Adminpro" - }, - { - "id": "th_webhostingservice", - "name": "Webhostingservice", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/webhostingservice", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/webhostingservice/", - "description": "Webhostingservice" - }, - { - "id": "th_seos", - "name": "Seos", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/seos", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/seos/", - "description": "Seos" - }, - { - "id": "th_octopus", - "name": "Octopus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/octopus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/octopus/", - "description": "Free Bootstrap admin dashboard template" - }, - { - "id": "th_adminwrap", - "name": "Adminwrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adminwrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adminwrap/", - "description": "Adminwrap" - }, - { - "id": "th_soft_tech", - "name": "Soft Tech", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/soft-tech", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/soft-tech/", - "description": "Soft Tech" - }, - { - "id": "th_notika", - "name": "Notika", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/notika", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/notika/", - "description": "Free Bootstrap admin dashboard" - }, - { - "id": "th_chameleon_admin", - "name": "Chameleon Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/chameleon-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/chameleon-admin/", - "description": "Chameleon Admin" - }, - { - "id": "th_jeweler", - "name": "Jeweler", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jeweler", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jeweler/", - "description": "Free Bootstrap admin dashboard template" - }, - { - "id": "th_now_ui_dashboard", - "name": "Now Ui Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/now-ui-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/now-ui-dashboard/", - "description": "Now Ui Dashboard" - }, - { - "id": "th_srtdash", - "name": "Srtdash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/srtdash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/srtdash/", - "description": "Free admin dashboard template" - }, - { - "id": "th_flaxseo", - "name": "Flaxseo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/flaxseo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/flaxseo/", - "description": "Flaxseo" - }, - { - "id": "th_light_dashboard", - "name": "Light Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/light-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/light-dashboard/", - "description": "Light Bootstrap Dashboard is an admin dashboard template designed to be beautiful and simple. " - }, - { - "id": "th_nice_admin", - "name": "Nice Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nice-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nice-admin/", - "description": "Nice Admin" - }, - { - "id": "th_monster_lite", - "name": "Monster Lite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/monster-lite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/monster-lite/", - "description": "Free Admin Dashboard Template Based On Bootstrap 4" - }, - { - "id": "th_xtreme_admin", - "name": "Xtreme Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/xtreme-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/xtreme-admin/", - "description": "Xtreme Admin" - }, - { - "id": "th_admin_4b", - "name": "Admin 4B", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/admin-4b", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/admin-4b/", - "description": "Bootstrap 4 Admin Template." - }, - { - "id": "th_material_lite", - "name": "Material Lite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-lite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-lite/", - "description": "Responsive Admin Dashboard Template" - }, - { - "id": "th_intechnic", - "name": "Intechnic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/intechnic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/intechnic/", - "description": "Intechnic" - }, - { - "id": "th_maxitechture", - "name": "Maxitechture", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/maxitechture", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/maxitechture/", - "description": "Maxitechture" - }, - { - "id": "th_hightech", - "name": "Hightech", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hightech", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hightech/", - "description": "Hightech" - }, - { - "id": "th_seogo", - "name": "Seogo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/seogo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/seogo/", - "description": "Seogo" - }, - { - "id": "th_hostcloud", - "name": "Hostcloud", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hostcloud", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hostcloud/", - "description": "Hostcloud" - }, - { - "id": "th_hosting", - "name": "Hosting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hosting", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hosting/", - "description": "Hosting" - }, - { - "id": "th_greatseo", - "name": "Greatseo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/greatseo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/greatseo/", - "description": "Greatseo" - }, - { - "id": "th_datarc", - "name": "Datarc", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Datarc", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Datarc/", - "description": "Datarc" - }, - { - "id": "th_dashboard", - "name": "Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dashboard/", - "description": "Dashboard" - }, - { - "id": "th_software", - "name": "Software", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Software", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Software/", - "description": "Software" - }, - { - "id": "th_modernize", - "name": "Modernize", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Modernize", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Modernize/", - "description": "admin dashboard template" - }, - { - "id": "th_sneat", - "name": "Sneat", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sneat", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sneat/", - "description": "Free Vuetify Vuejs 3 Admin Template" - }, - { - "id": "th_hightechit", - "name": "Hightechit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/HighTechIT", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/HighTechIT/", - "description": "Hightechit" - }, - { - "id": "th_materialdashboard2", - "name": "Materialdashboard2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MaterialDashboard2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MaterialDashboard2/", - "description": "Materialdashboard2" - }, - { - "id": "th_dashdarkx", - "name": "Dashdarkx", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dashdarkX", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dashdarkX/", - "description": "React Material-UI dark admin dashboard template" - }, - { - "id": "th_modernize_mui_admin", - "name": "Modernize Mui Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/modernize-mui-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/modernize-mui-admin/", - "description": "Modernize Mui Admin" - }, - { - "id": "th_argon_dashboard_material_ui", - "name": "Argon Dashboard Material Ui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/argon-dashboard-material-ui", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/argon-dashboard-material-ui/", - "description": "This is the Material UI version of the Argon Dashboard React." - }, - { - "id": "th_carpatin_dashboard_free", - "name": "Carpatin Dashboard Free", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/carpatin-dashboard-free", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/carpatin-dashboard-free/", - "description": "Carpatin Dashboard Free" - }, - { - "id": "th_volt_react_dashboard", - "name": "Volt React Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/volt-react-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/volt-react-dashboard/", - "description": "Free and open source React.js admin dashboard template and UI library based on Bootstrap 5" - }, - { - "id": "th_react_typescript_dashboard", - "name": "React Typescript Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/react-typescript-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/react-typescript-dashboard/", - "description": "The first project I used Typescript. Very useful! I developed a dashboard using the data grid in MUI and Recharts charts." - }, - { - "id": "th_react_dashboard_material", - "name": "React Dashboard Material", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/react-dashboard-material", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/react-dashboard-material/", - "description": "React Dashboard Material" - }, - { - "id": "th_mantis_free_react_admin_template", - "name": "Mantis Free React Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mantis-free-react-admin-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mantis-free-react-admin-template/", - "description": "Mantis is React Dashboard Template having combine tone of 2 popular react component library - MUI and Ant Design principles." - }, - { - "id": "th_vision_ui_dashboard_react", - "name": "Vision Ui Dashboard React", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vision-ui-dashboard-react", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vision-ui-dashboard-react/", - "description": "Vision Ui Dashboard React" - }, - { - "id": "th_soft_ui_dashboard_react", - "name": "Soft Ui Dashboard React", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/soft-ui-dashboard-react", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/soft-ui-dashboard-react/", - "description": "Soft UI Dashboard React - Free Dashboard using React and Material UI" - }, - { - "id": "th_kaiadmin_lite", - "name": "Kaiadmin Lite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kaiadmin-lite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kaiadmin-lite/", - "description": "Free and Open-source Bootstrap 5 Admin Dashboard Template" - }, - { - "id": "th_seodash", - "name": "Seodash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/SEODash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/SEODash/", - "description": "Free Bootstrap 5 Admin Dashboard Website Template" - }, - { - "id": "th_commercialbundle2025", - "name": "Commercialbundle2025", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/CommercialBundle2025", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/CommercialBundle2025/", - "description": "50 Free Admin & eCom Templates for 2025" - }, - { - "id": "th_mantis_bootstrap", - "name": "Mantis Bootstrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Mantis-Bootstrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Mantis-Bootstrap/", - "description": "Free Bootstrap 5 Admin Template" - }, - { - "id": "th_staradmin_free_bootstrap_admin_template", - "name": "Staradmin Free Bootstrap Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/StarAdmin-Free-Bootstrap-Admin-Template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/StarAdmin-Free-Bootstrap-Admin-Template/", - "description": "A Free Responsive Admin Dashboard Template Built With Bootstrap 4. Elegant UI Theme for Your Web App!" - }, - { - "id": "th_materialdash_admin", - "name": "Materialdash Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MaterialDash-Admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MaterialDash-Admin/", - "description": "Materialdash Admin" - }, - { - "id": "th_black_dashboard", - "name": "Black Dashboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/black-dashboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/black-dashboard/", - "description": "Black Dashboard" - }, - { - "id": "th_flexy_bootstrap_lite", - "name": "Flexy Bootstrap Lite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/flexy-bootstrap-lite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/flexy-bootstrap-lite/", - "description": "Flexy Admin Lite is a Free Modern Bootstrap 5 WebApp & Admin Dashboard Html Template elegant design, clean and organised code." - }, - { - "id": "th_materially_free_react_admin_template", - "name": "Materially Free React Admin Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/materially-free-react-admin-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/materially-free-react-admin-template/", - "description": "Free version of Materially admin template" - }, - { - "id": "th_mantis_vuejs_admintemplate", - "name": "Mantis Vuejs Admintemplate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Mantis-vuejs-AdminTemplate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Mantis-vuejs-AdminTemplate/", - "description": "Mantis Vue and Vuetify free admin template" - }, - { - "id": "th_argon_dashboard_tailwind", - "name": "Argon Dashboard Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/argon-dashboard-tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/argon-dashboard-tailwind/", - "description": "Argon Dashboard Tailwind - Free and OpenSource TailwindCSS Dashboard" - }, - { - "id": "th_dashboardkit", - "name": "Dashboardkit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/DashboardKit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/DashboardKit/", - "description": "Dashboardkit" - }, - { - "id": "th_soft_ui_dashboard_tailwind", - "name": "Soft Ui Dashboard Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Soft-UI-Dashboard-Tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Soft-UI-Dashboard-Tailwind/", - "description": "Soft Ui Dashboard Tailwind" - }, - { - "id": "th_tailadmin", - "name": "Tailadmin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/TailAdmin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/TailAdmin/", - "description": "https://themewagon.github.io/TailAdmin/" - }, - { - "id": "th_tailadmin_nextjs", - "name": "Tailadmin Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tailadmin-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tailadmin-nextjs/", - "description": "Tailadmin Nextjs" - }, - { - "id": "th_tailadmin_vuejs", - "name": "Tailadmin Vuejs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tailadmin-vuejs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tailadmin-vuejs/", - "description": "Tailadmin Vuejs" - }, - { - "id": "th_aurora_free", - "name": "Aurora Free", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aurora-free", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aurora-free/", - "description": "Aurora Free React Material-UI Admin Template." - }, - { - "id": "th_matdash_nextjs", - "name": "Matdash Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/matdash-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/matdash-nextjs/", - "description": "MatDash Free Tailwind Next.js Admin Template" - }, - { - "id": "th_material_dashboard_tailwind_old", - "name": "Material Dashboard Tailwind Old ", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-dashboard-tailwind-old-", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-dashboard-tailwind-old-/", - "description": "Material Dashboard Tailwind Old " - }, - { - "id": "th_duralux_admin", - "name": "Duralux Admin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Duralux-admin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Duralux-admin/", - "description": "Duralux - CRM Admin & Dashboard HTML Template" - }, - { - "id": "th_material_dashboard_shadcn_vue", - "name": "Material Dashboard Shadcn Vue", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-dashboard-shadcn-vue", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-dashboard-shadcn-vue/", - "description": "Material Dashboard Shadcn Vue – A modern CRM template for Vue developers" - }, - { - "id": "th_material_tailwind_dashboard_react", - "name": "Material Tailwind Dashboard React", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-tailwind-dashboard-react", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-tailwind-dashboard-react/", - "description": "Material Tailwind Dashboard React" - }, - { - "id": "th_smart_home", - "name": "Smart Home", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/smart-home", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/smart-home/", - "description": "Smart Home Dashboard Template – Next.js Admin UI" - }, - { - "id": "th_inapp", - "name": "Inapp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/inapp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/inapp/", - "description": "InApp Free Inventory Admin Dashboard Template" - }, - { - "id": "th_dasher", - "name": "Dasher", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dasher", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dasher/", - "description": "Dasher UI - Free Bootstrap 5 Admin Dashboard Template" - }, - { - "id": "da_cloud_hosting_free_bootstrap_responsive_website_template", - "name": "Cloud Hosting Free Bootstrap Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "cloud-hosting-free-bootstrap-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/cloud-hosting-free-bootstrap-responsive-website-template/", - "description": "Cloud Hosting Free Bootstrap Responsive Website Template" - }, - { - "id": "da_fiber_hosting_bootstrap_website_template", - "name": "Fiber Hosting Bootstrap Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "fiber-hosting-bootstrap-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/fiber-hosting-bootstrap-website-template/", - "description": "Fiber Hosting Bootstrap Website Template" - }, - { - "id": "da_free_bootstrap_admin_template_dream", - "name": "Free Bootstrap Admin Template Dream", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "free-bootstrap-admin-template-dream", - "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-admin-template-dream/", - "description": "Free Bootstrap Admin Template Dream" - }, - { - "id": "da_hybrid_bootstrap_admin_template", - "name": "Hybrid Bootstrap Admin Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "hybrid-bootstrap-admin-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/hybrid-bootstrap-admin-template/", - "description": "Hybrid Bootstrap Admin Template" - }, - { - "id": "da_idata_hosting_free_bootstrap_responsive_website_template", - "name": "Idata Hosting Free Bootstrap Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "idata-hosting-free-bootstrap-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/idata-hosting-free-bootstrap-responsive-website-template/", - "description": "Idata Hosting Free Bootstrap Responsive Website Template" - }, - { - "id": "da_insight_free_bootstrap_html5_admin_template", - "name": "Insight Free Bootstrap Html5 Admin Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "insight-free-bootstrap-html5-admin-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/insight-free-bootstrap-html5-admin-template/", - "description": "Insight Free Bootstrap Html5 Admin Template" - }, - { - "id": "da_matrix_free_bootstrap_admin_template", - "name": "Matrix Free Bootstrap Admin Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "matrix-free-bootstrap-admin-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/matrix-free-bootstrap-admin-template/", - "description": "Matrix Free Bootstrap Admin Template" - }, - { - "id": "da_sb_admin_2", - "name": "Sb Admin 2", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "sb-admin-2", - "preview_url": "https://dawidolko.github.io/Website-Templates/sb-admin-2/", - "description": "Sb Admin 2" - }, - { - "id": "da_sb_admin", - "name": "Sb Admin", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "sb-admin", - "preview_url": "https://dawidolko.github.io/Website-Templates/sb-admin/", - "description": "Sb Admin" - }, - { - "id": "da_speed_hosting_bootstrap_free_html5_template", - "name": "Speed Hosting Bootstrap Free Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "speed-hosting-bootstrap-free-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/speed-hosting-bootstrap-free-html5-template/", - "description": "Speed Hosting Bootstrap Free Html5 Template" - }, - { - "id": "da_startbootstrap_sb_admin_1_0_2", - "name": "Sb Admin 1.0.2", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "startbootstrap-sb-admin-1.0.2", - "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-sb-admin-1.0.2/", - "description": "Sb Admin 1.0.2" - }, - { - "id": "da_startbootstrap_sb_admin_2_1_0_5", - "name": "Sb Admin 2 1.0.5", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "startbootstrap-sb-admin-2-1.0.5", - "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-sb-admin-2-1.0.5/", - "description": "Sb Admin 2 1.0.5" - }, - { - "id": "da_tech_city_free_coming_soon_bootstrap_responsive_template", - "name": "Tech City Free Coming Soon Bootstrap Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "tech-city-free-coming-soon-bootstrap-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/tech-city-free-coming-soon-bootstrap-responsive-template/", - "description": "Tech City Free Coming Soon Bootstrap Responsive Template" - }, - { - "id": "da_techro", - "name": "Techro", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "techro", - "preview_url": "https://dawidolko.github.io/Website-Templates/techro/", - "description": "Techro" - } - ] - }, - { - "id": "blog", - "name": "Блоги и журналы", - "icon": "book", - "templates": [ - { - "id": "h5up_dopetrope", - "name": "Dopetrope", - "source": "html5up", - "description": "Шаблон для медиа-блога", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "dopetrope", - "preview_url": "https://html5up.net/dopetrope/" - }, - { - "id": "h5up_massively", - "name": "Massively", - "source": "html5up", - "description": "Блог с выделенными постами", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "massively", - "preview_url": "https://html5up.net/massively/" - }, - { - "id": "h5up_story", - "name": "Story", - "source": "html5up", - "description": "Шаблон для рассказов и статей", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "story", - "preview_url": "https://html5up.net/story/" - }, - { - "id": "sb_clean_blog", - "name": "StartBootstrap Clean Blog", - "source": "startbootstrap", - "description": "Чистый и простой блог", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-clean-blog", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-clean-blog/" - }, - { - "id": "th_aznews", - "name": "Aznews", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aznews", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aznews/", - "description": "Aznews" - }, - { - "id": "th_news", - "name": "News", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/news", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/news/", - "description": "News" - }, - { - "id": "th_biznews", - "name": "Biznews", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/biznews", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/biznews/", - "description": "Biznews" - }, - { - "id": "th_magnews2", - "name": "Magnews2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/magnews2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/magnews2/", - "description": "Magnews2" - }, - { - "id": "th_magz", - "name": "Magz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Magz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Magz/", - "description": "Free magazine template based on Bootstrap3, HTML5 & CSS3. " - }, - { - "id": "th_blogger", - "name": "Blogger", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/blogger", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/blogger/", - "description": "Blogger" - }, - { - "id": "th_newsbox", - "name": "Newsbox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/newsbox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/newsbox/", - "description": "Newsbox" - }, - { - "id": "th_24_news", - "name": "24 News", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/24-news", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/24-news/", - "description": "24 News" - }, - { - "id": "th_themeblog", - "name": "Themeblog", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ThemeBlog", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ThemeBlog/", - "description": "Fully responsive and unique blog template made by Bootstrap" - }, - { - "id": "th_awesome_magazine", - "name": "Awesome Magazine", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/awesome-magazine", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/awesome-magazine/", - "description": "Awesome Magazine" - }, - { - "id": "th_massively", - "name": "Massively", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/massively", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/massively/", - "description": "Free Responsive HTML5 Bootstrap Template for Blogging" - }, - { - "id": "th_newspot", - "name": "Newspot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/newspot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/newspot/", - "description": "Newspot" - }, - { - "id": "th_newsoft", - "name": "Newsoft", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/newsoft", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/newsoft/", - "description": "Newsoft" - }, - { - "id": "th_blogy", - "name": "Blogy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/blogy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/blogy/", - "description": "Blogy" - }, - { - "id": "th_newsers", - "name": "Newsers", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Newsers", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Newsers/", - "description": "Newsers" - }, - { - "id": "th_blogge", - "name": "Blogge", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Blogge", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Blogge/", - "description": "Free HTML Blogging Website Template" - }, - { - "id": "th_zenblog", - "name": "Zenblog", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ZenBlog", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ZenBlog/", - "description": "Free Bootstrap 5 Blogging Website Template" - }, - { - "id": "th_nextjs_tailwind_blog_posts_page", - "name": "Nextjs Tailwind Blog Posts Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nextjs-tailwind-blog-posts-page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nextjs-tailwind-blog-posts-page/", - "description": "Nextjs Tailwind Blog Posts Page" - }, - { - "id": "th_nextjs_blog_posts_page", - "name": "Nextjs Blog Posts Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nextjs-blog-posts-page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nextjs-blog-posts-page/", - "description": "Nextjs Blog Posts Page" - }, - { - "id": "th_bookworm", - "name": "Bookworm", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Bookworm", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Bookworm/", - "description": "Bookworm – a minimal multi-author free nextjs blog template." - }, - { - "id": "th_tailwind_nextjs_starter_blog", - "name": "Tailwind Nextjs Starter Blog", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Tailwind-Nextjs-Starter-Blog", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Tailwind-Nextjs-Starter-Blog/", - "description": "Tailwind Nextjs Starter Blog – a Next.js, Tailwind CSS blogging starter template." - }, - { - "id": "da_startbootstrap_clean_blog_1_0_2", - "name": "Clean Blog 1.0.2", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "startbootstrap-clean-blog-1.0.2", - "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-clean-blog-1.0.2/", - "description": "Clean Blog 1.0.2" - } - ] - }, - { - "id": "travel", - "name": "Путешествия", - "icon": "home", - "templates": [ - { - "id": "h5up_prologue", - "name": "Prologue", - "source": "html5up", - "description": "Одностраничный портал путешествий", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "prologue", - "preview_url": "https://html5up.net/prologue/" - }, - { - "id": "h5up_twenty", - "name": "Twenty", - "source": "html5up", - "description": "Туристический портал", - "repo_url": "https://github.com/zce/html5up", - "sparse_path": "twenty", - "preview_url": "https://html5up.net/twenty/" - }, - { - "id": "lz_traveller", - "name": "Traveller", - "source": "learning-zone", - "description": "Туристическое агентство", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "traveller-bootstrap-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/traveller-bootstrap-responsive-web-template/" - }, - { - "id": "sb_grayscale", - "name": "StartBootstrap Grayscale", - "source": "startbootstrap", - "description": "Портал путешествий", - "repo_url": "https://github.com/StartBootstrap/startbootstrap-grayscale", - "sparse_path": ".", - "preview_url": "https://startbootstrap.github.io/startbootstrap-grayscale/" - }, - { - "id": "th_adventure", - "name": "Adventure", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adventure", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adventure/", - "description": "Adventure" - }, - { - "id": "th_travelista", - "name": "Travelista", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/travelista", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/travelista/", - "description": "Travelista" - }, - { - "id": "th_tour", - "name": "Tour", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tour", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tour/", - "description": "Tour" - }, - { - "id": "th_wooxtravel", - "name": "Wooxtravel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wooxtravel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wooxtravel/", - "description": "Wooxtravel" - }, - { - "id": "th_hotelier", - "name": "Hotelier", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hotelier", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hotelier/", - "description": "Hotelier" - }, - { - "id": "th_gotrip", - "name": "Gotrip", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gotrip", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gotrip/", - "description": "Gotrip" - }, - { - "id": "th_travelo", - "name": "Travelo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/travelo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/travelo/", - "description": "Travelo" - }, - { - "id": "th_tripbiz", - "name": "Tripbiz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tripbiz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tripbiz/", - "description": "Tripbiz" - }, - { - "id": "th_star_hotels", - "name": "Star Hotels", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/star-hotels", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/star-hotels/", - "description": "Star Hotels" - }, - { - "id": "th_travelix", - "name": "Travelix", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/travelix", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/travelix/", - "description": "Travelix" - }, - { - "id": "th_hotel", - "name": "Hotel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hotel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hotel/", - "description": "Hotel" - }, - { - "id": "th_vacation_rental", - "name": "Vacation Rental", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vacation-rental", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vacation-rental/", - "description": "Vacation Rental" - }, - { - "id": "th_trips", - "name": "Trips", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trips", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trips/", - "description": "Trips" - }, - { - "id": "th_luxury_hotel", - "name": "Luxury Hotel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/luxury-hotel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/luxury-hotel/", - "description": "Luxury Hotel" - }, - { - "id": "th_vacation", - "name": "Vacation", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vacation", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vacation/", - "description": "Vacation" - }, - { - "id": "th_travelers", - "name": "Travelers", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/travelers", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/travelers/", - "description": "Travelers" - }, - { - "id": "th_trip_spot", - "name": "Trip Spot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trip-spot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trip-spot/", - "description": "Trip Spot" - }, - { - "id": "th_mercury_travel", - "name": "Mercury Travel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mercury-travel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mercury-travel/", - "description": "Mercury Travel" - }, - { - "id": "th_travellers", - "name": "Travellers", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Travellers", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Travellers/", - "description": "Travellers" - }, - { - "id": "th_travela", - "name": "Travela", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/travela", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/travela/", - "description": "Travela" - }, - { - "id": "th_mellow", - "name": "Mellow", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mellow", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mellow/", - "description": "Free Bootstrap 5 Hotel Website Template" - }, - { - "id": "th_telly", - "name": "Telly", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/telly", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/telly/", - "description": "Free Bootstrap 5 Hotel Website Template" - }, - { - "id": "th_roadtrip", - "name": "Roadtrip", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/RoadTrip", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/RoadTrip/", - "description": "HTML5 & CSS3 Template" - }, - { - "id": "th_bustraveller", - "name": "Bustraveller", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/BusTraveller", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/BusTraveller/", - "description": "Bustraveller" - }, - { - "id": "th_tournest", - "name": "Tournest", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tournest", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tournest/", - "description": "Tournest" - }, - { - "id": "da_golden_hotel_free_html5_bootstrap_web_template", - "name": "Golden Hotel Free Html5 Bootstrap Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "golden-hotel-free-html5-bootstrap-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/golden-hotel-free-html5-bootstrap-web-template/", - "description": "Golden Hotel Free Html5 Bootstrap Web Template" - }, - { - "id": "da_traveller_bootstrap_responsive_web_template", - "name": "Traveller Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "traveller-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/traveller-bootstrap-responsive-web-template/", - "description": "Traveller Bootstrap Responsive Web Template" - } - ] - }, - { - "id": "beauty", - "name": "Красота и свадьбы", - "icon": "palette", - "templates": [ - { - "id": "lz_beauty_salon", - "name": "Beauty Salon", - "source": "learning-zone", - "description": "Салон красоты", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "beauty-salon-bootstrap-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/beauty-salon-bootstrap-html5-template/" - }, - { - "id": "lz_lovely_wedding", - "name": "Lovely Wedding", - "source": "learning-zone", - "description": "Свадебное агентство", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "lovely-wedding-bootstrap-free-website-template", - "preview_url": "https://learning-zone.github.io/website-templates/lovely-wedding-bootstrap-free-website-template/" - }, - { - "id": "lz_best_wedding", - "name": "Best Wedding", - "source": "learning-zone", - "description": "Портал свадебных услуг", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "the-best-wedding-free-bootstrap-template", - "preview_url": "https://learning-zone.github.io/website-templates/the-best-wedding-free-bootstrap-template/" - }, - { - "id": "lz_wedding_bells", - "name": "Wedding Bells", - "source": "learning-zone", - "description": "Звон свадебных колоколов", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "wedding-bells-free-responsive-html5-template", - "preview_url": "https://learning-zone.github.io/website-templates/wedding-bells-free-responsive-html5-template/" - }, - { - "id": "th_malefashion", - "name": "Malefashion", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/malefashion", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/malefashion/", - "description": "Malefashion" - }, - { - "id": "th_space_dynamic", - "name": "Space Dynamic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/space-dynamic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/space-dynamic/", - "description": "Space Dynamic" - }, - { - "id": "th_haircare", - "name": "Haircare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/haircare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/haircare/", - "description": "Haircare" - }, - { - "id": "th_salon", - "name": "Salon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Salon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Salon/", - "description": "Free website template for hair salon, hairdressing, barber shop, and beauty salon" - }, - { - "id": "th_man_hair_salon", - "name": "Man Hair Salon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Man-Hair-Salon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Man-Hair-Salon/", - "description": "Man Hair Salon" - }, - { - "id": "th_labspa2", - "name": "Labspa2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/labspa2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/labspa2/", - "description": "Labspa2" - }, - { - "id": "th_sparsh", - "name": "Sparsh", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sparsh", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sparsh/", - "description": "Sparsh" - }, - { - "id": "th_hipstyle", - "name": "Hipstyle", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hipstyle", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hipstyle/", - "description": "Hipstyle" - }, - { - "id": "th_whitespace", - "name": "Whitespace", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/whitespace", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/whitespace/", - "description": "Whitespace" - }, - { - "id": "th_hotspace", - "name": "Hotspace", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hotspace", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hotspace/", - "description": "Hotspace" - }, - { - "id": "th_beauty", - "name": "Beauty", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/beauty", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/beauty/", - "description": "Beauty" - }, - { - "id": "th_the_real_wedding", - "name": "The Real Wedding", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/the-real-wedding", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/the-real-wedding/", - "description": "The Real Wedding" - }, - { - "id": "th_haircut", - "name": "Haircut", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/haircut", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/haircut/", - "description": "Haircut" - }, - { - "id": "th_space", - "name": "Space", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/space", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/space/", - "description": "Space" - }, - { - "id": "th_style", - "name": "Style", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/style", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/style/", - "description": "Style" - }, - { - "id": "th_hairnic", - "name": "Hairnic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hairnic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hairnic/", - "description": "Hairnic" - }, - { - "id": "th_sparlex", - "name": "Sparlex", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sparlex", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sparlex/", - "description": "Sparlex" - }, - { - "id": "th_lifestylemag", - "name": "Lifestylemag", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/LifeStyleMag", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/LifeStyleMag/", - "description": "Lifestylemag" - }, - { - "id": "th_lifestyle", - "name": "Lifestyle", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lifestyle", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lifestyle/", - "description": "Lifestyle Free Website Template" - }, - { - "id": "th_salone", - "name": "Salone", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Salone", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Salone/", - "description": "Salone" - }, - { - "id": "th_perfectcut", - "name": "Perfectcut", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/perfectcut", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/perfectcut/", - "description": "Perfectcut – Beauty Salon Website template" - }, - { - "id": "da_aroma_beauty_and_spa_responsive_bootstrap_template", - "name": "Aroma Beauty And Spa Responsive Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "aroma-beauty-and-spa-responsive-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/aroma-beauty-and-spa-responsive-bootstrap-template/", - "description": "Aroma Beauty And Spa Responsive Bootstrap Template" - }, - { - "id": "da_beauty_salon_bootstrap_html5_template", - "name": "Beauty Salon Bootstrap Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "beauty-salon-bootstrap-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/beauty-salon-bootstrap-html5-template/", - "description": "Beauty Salon Bootstrap Html5 Template" - }, - { - "id": "da_lovely_wedding_bootstrap_free_website_template", - "name": "Lovely Wedding Bootstrap Free Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "lovely-wedding-bootstrap-free-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/lovely-wedding-bootstrap-free-website-template/", - "description": "Lovely Wedding Bootstrap Free Website Template" - }, - { - "id": "da_photo_style_two", - "name": "Photo Style Two", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "photo-style-two", - "preview_url": "https://dawidolko.github.io/Website-Templates/photo-style-two/", - "description": "Photo Style Two" - }, - { - "id": "da_the_best_wedding_free_bootstrap_template", - "name": "The Best Wedding Free Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "the-best-wedding-free-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/the-best-wedding-free-bootstrap-template/", - "description": "The Best Wedding Free Bootstrap Template" - }, - { - "id": "da_wedding_bells_free_responsive_html5_template", - "name": "Wedding Bells Free Responsive Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "wedding-bells-free-responsive-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/wedding-bells-free-responsive-html5-template/", - "description": "Wedding Bells Free Responsive Html5 Template" - } - ] - }, - { - "id": "automotive", - "name": "Авто и транспорт", - "icon": "chart-bar", - "templates": [ - { - "id": "lz_car_zone", - "name": "Car Zone", - "source": "learning-zone", - "description": "Автосалон и продажа машин", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "car-zone-automobile-bootstrap-responsive-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/car-zone-automobile-bootstrap-responsive-web-template/" - }, - { - "id": "lz_car_care", - "name": "Car Care", - "source": "learning-zone", - "description": "Автосервис и уход за авто", - "repo_url": "https://github.com/learning-zone/website-templates", - "sparse_path": "car-care-auto-mobile-html5-bootstrap-web-template", - "preview_url": "https://learning-zone.github.io/website-templates/car-care-auto-mobile-html5-bootstrap-web-template/" - }, - { - "id": "th_carbook", - "name": "Carbook", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/carbook", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/carbook/", - "description": "Carbook" - }, - { - "id": "th_dentcare", - "name": "Dentcare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dentcare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dentcare/", - "description": "Dentcare" - }, - { - "id": "th_carserv", - "name": "Carserv", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/carserv", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/carserv/", - "description": "Carserv" - }, - { - "id": "th_dentacare", - "name": "Dentacare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dentacare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dentacare/", - "description": "Dentacare" - }, - { - "id": "th_logistics", - "name": "Logistics", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/logistics", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/logistics/", - "description": "Logistics" - }, - { - "id": "th_medic_care", - "name": "Medic Care", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medic-care", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medic-care/", - "description": "Medic Care" - }, - { - "id": "th_caremed", - "name": "Caremed", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/caremed", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/caremed/", - "description": "Caremed" - }, - { - "id": "th_transportz", - "name": "Transportz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/transportz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/transportz/", - "description": "Transportz" - }, - { - "id": "th_legalcare", - "name": "Legalcare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/legalcare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/legalcare/", - "description": "Legalcare" - }, - { - "id": "th_carrent", - "name": "Carrent", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/carrent", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/carrent/", - "description": "Carrent" - }, - { - "id": "th_drcare", - "name": "Drcare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/drcare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/drcare/", - "description": "Drcare" - }, - { - "id": "th_carwash", - "name": "Carwash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/carwash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/carwash/", - "description": "Carwash" - }, - { - "id": "th_lawncare", - "name": "Lawncare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lawncare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lawncare/", - "description": "Lawncare" - }, - { - "id": "th_caraft", - "name": "Caraft", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/caraft", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/caraft/", - "description": "Caraft" - }, - { - "id": "th_taxi", - "name": "Taxi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/taxi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/taxi/", - "description": "Taxi" - }, - { - "id": "th_autorepair", - "name": "Autorepair", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/autorepair", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/autorepair/", - "description": "Autorepair" - }, - { - "id": "th_unicare", - "name": "Unicare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/unicare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/unicare/", - "description": "Unicare" - }, - { - "id": "th_autoroad", - "name": "Autoroad", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/autoroad", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/autoroad/", - "description": "Autoroad" - }, - { - "id": "th_carrentals", - "name": "Carrentals", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/carrentals", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/carrentals/", - "description": "Carrentals" - }, - { - "id": "th_cargo", - "name": "Cargo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cargo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cargo/", - "description": "Cargo" - }, - { - "id": "th_medcare", - "name": "Medcare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medcare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medcare/", - "description": "Medcare" - }, - { - "id": "th_cardboard", - "name": "Cardboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cardboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cardboard/", - "description": "Cardboard" - }, - { - "id": "th_careo", - "name": "Careo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/careo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/careo/", - "description": "Careo" - }, - { - "id": "th_card", - "name": "Card", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/card", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/card/", - "description": "Card" - }, - { - "id": "th_transportation", - "name": "Transportation", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/transportation", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/transportation/", - "description": "Transportation" - }, - { - "id": "th_guide", - "name": "Guide", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/guide", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/guide/", - "description": "Free Logistic Transport Website template" - }, - { - "id": "th_primecare", - "name": "Primecare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/PrimeCare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/PrimeCare/", - "description": "Primecare" - }, - { - "id": "th_carint", - "name": "Carint", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Carint", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Carint/", - "description": "Carint" - }, - { - "id": "th_freshcart", - "name": "Freshcart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/freshcart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/freshcart/", - "description": "Freshcart" - }, - { - "id": "da_car_care_auto_mobile_html5_bootstrap_web_template", - "name": "Car Care Auto Mobile Html5 Bootstrap Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "car-care-auto-mobile-html5-bootstrap-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/car-care-auto-mobile-html5-bootstrap-web-template/", - "description": "Car Care Auto Mobile Html5 Bootstrap Web Template" - }, - { - "id": "da_car_repair_html5_bootstrap_template", - "name": "Car Repair Html5 Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "car-repair-html5-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/car-repair-html5-bootstrap-template/", - "description": "Car Repair Html5 Bootstrap Template" - }, - { - "id": "da_car_zone_automobile_bootstrap_responsive_web_template", - "name": "Car Zone Automobile Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "car-zone-automobile-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/car-zone-automobile-bootstrap-responsive-web-template/", - "description": "Car Zone Automobile Bootstrap Responsive Web Template" - } - ] - }, - { - "id": "entertainment", - "name": "Развлечения и события", - "icon": "rocket", - "templates": [ - { - "id": "th_eventon_christmas", - "name": "Eventon Christmas", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eventon-christmas", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eventon-christmas/", - "description": "Eventon Christmas" - }, - { - "id": "th_one_music", - "name": "One Music", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/one-music", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/one-music/", - "description": "One Music" - }, - { - "id": "th_game_warrior", - "name": "Game Warrior", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/game-warrior", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/game-warrior/", - "description": "Game Warrior" - }, - { - "id": "th_eventcon", - "name": "Eventcon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eventcon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eventcon/", - "description": "Eventcon" - }, - { - "id": "th_endgame", - "name": "Endgame", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/endgame", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/endgame/", - "description": "Endgame" - }, - { - "id": "th_theevent", - "name": "Theevent", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/theevent", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/theevent/", - "description": "Theevent" - }, - { - "id": "th_musico", - "name": "Musico", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/musico", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/musico/", - "description": "Musico" - }, - { - "id": "th_sports", - "name": "Sports", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sports", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sports/", - "description": "Sports" - }, - { - "id": "th_solmusic", - "name": "Solmusic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/solmusic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/solmusic/", - "description": "Solmusic" - }, - { - "id": "th_sportz", - "name": "Sportz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sportz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sportz/", - "description": "Sportz" - }, - { - "id": "th_eventalk", - "name": "Eventalk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eventalk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eventalk/", - "description": "Eventalk" - }, - { - "id": "th_music1", - "name": "Music1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/music1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/music1/", - "description": "Music1" - }, - { - "id": "th_eventz", - "name": "Eventz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eventz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eventz/", - "description": "Eventz" - }, - { - "id": "th_eventre", - "name": "Eventre", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eventre", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eventre/", - "description": "Eventre" - }, - { - "id": "th_esportsteam", - "name": "Esportsteam", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/esportsteam", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/esportsteam/", - "description": "Esportsteam" - }, - { - "id": "th_avalon", - "name": "Avalon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/avalon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/avalon/", - "description": "It's a one page template specially crafted for event and conference websites. Get this free template from ThemeWaogn." - }, - { - "id": "th_sportsfit", - "name": "Sportsfit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sportsfit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sportsfit/", - "description": "Sportsfit" - }, - { - "id": "th_sports_coach", - "name": "Sports Coach", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sports-coach", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sports-coach/", - "description": "A Responsive Template for Online Coaching" - }, - { - "id": "th_trailer_time", - "name": "Trailer Time", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trailer-time", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trailer-time/", - "description": "This website was designed to allow viewers complete access to all movie and tv series trailers. It was created using React + MUI" - }, - { - "id": "th_waterland", - "name": "Waterland", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/WaterLand", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/WaterLand/", - "description": "Free Entertainment Website Template" - }, - { - "id": "da_delite_music_html5_bootstrap_responsive_web_template", - "name": "Delite Music Html5 Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "delite-music-html5-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/delite-music-html5-bootstrap-responsive-web-template/", - "description": "Delite Music Html5 Bootstrap Responsive Web Template" - } - ] - }, - { - "id": "nonprofit", - "name": "Благотворительность", - "icon": "heart", - "templates": [ - { - "id": "th_rango", - "name": "Rango", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rango", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rango/", - "description": "Rango" - }, - { - "id": "th_charityworks", - "name": "Charityworks", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/charityworks", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/charityworks/", - "description": "Charityworks" - }, - { - "id": "th_charity", - "name": "Charity", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Charity", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Charity/", - "description": "Charity" - }, - { - "id": "th_dingo", - "name": "Dingo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dingo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dingo/", - "description": "Dingo" - }, - { - "id": "th_bingo", - "name": "Bingo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bingo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bingo/", - "description": "Bingo" - }, - { - "id": "th_foundation", - "name": "Foundation", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foundation", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foundation/", - "description": "Foundation" - }, - { - "id": "th_hangover", - "name": "Hangover", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hangover", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hangover/", - "description": "Another cool HTML Responsive Template" - }, - { - "id": "th_sungo", - "name": "Sungo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sungo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sungo/", - "description": "Sungo – Ecology & Solar Energy HTML Template" - } - ] - }, - { - "id": "photography", - "name": "Фотография", - "icon": "palette", - "templates": [ - { - "id": "th_training_studio", - "name": "Training Studio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/training-studio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/training-studio/", - "description": "Training Studio" - }, - { - "id": "th_photosen", - "name": "Photosen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photosen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photosen/", - "description": "Photosen" - }, - { - "id": "th_photozone", - "name": "Photozone", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photozone", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photozone/", - "description": "Photozone" - }, - { - "id": "th_dronephotography", - "name": "Dronephotography", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dronephotography", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dronephotography/", - "description": "Dronephotography" - }, - { - "id": "th_mostudio", - "name": "Mostudio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mostudio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mostudio/", - "description": "Mostudio" - }, - { - "id": "th_photography", - "name": "Photography", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photography", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photography/", - "description": "Photography Template" - }, - { - "id": "th_photography_cl", - "name": "Photography Cl", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Photography-CL", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Photography-CL/", - "description": "Photography Cl" - }, - { - "id": "th_photogallery", - "name": "Photogallery", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photogallery", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photogallery/", - "description": "Photogallery" - }, - { - "id": "th_photoshoot", - "name": "Photoshoot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photoshoot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photoshoot/", - "description": "Photoshoot" - }, - { - "id": "th_photogenic", - "name": "Photogenic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photogenic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photogenic/", - "description": "Photogenic" - }, - { - "id": "th_artstudio", - "name": "Artstudio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/artstudio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/artstudio/", - "description": "Artstudio" - }, - { - "id": "th_studio", - "name": "Studio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/studio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/studio/", - "description": "Studio" - }, - { - "id": "th_photo", - "name": "Photo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/photo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/photo/", - "description": "Photo" - }, - { - "id": "th_cleanphotography", - "name": "Cleanphotography", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cleanphotography", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cleanphotography/", - "description": "Cleanphotography" - }, - { - "id": "th_role", - "name": "Role", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Role", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Role/", - "description": "Free Responsive Bootstrap 4 Photography Website Template" - }, - { - "id": "th_studiova", - "name": "Studiova", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Studiova", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Studiova/", - "description": "Studiova" - }, - { - "id": "th_istudio", - "name": "Istudio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/iStudio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/iStudio/", - "description": "Istudio" - }, - { - "id": "da_amaze_photography_bootstrap_html5_template", - "name": "Amaze Photography Bootstrap Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "amaze-photography-bootstrap-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/amaze-photography-bootstrap-html5-template/", - "description": "Amaze Photography Bootstrap Html5 Template" - }, - { - "id": "da_css3_photo_two", - "name": "Css3 Photo Two", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "css3-photo-two", - "preview_url": "https://dawidolko.github.io/Website-Templates/css3-photo-two/", - "description": "Css3 Photo Two" - }, - { - "id": "da_iclick_photography_bootstrap_free_website_template", - "name": "Iclick Photography Bootstrap Free Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "iclick-photography-bootstrap-free-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/iclick-photography-bootstrap-free-website-template/", - "description": "Iclick Photography Bootstrap Free Website Template" - }, - { - "id": "da_photo_art", - "name": "Photo Art", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "photo-art", - "preview_url": "https://dawidolko.github.io/Website-Templates/photo-art/", - "description": "Photo Art" - }, - { - "id": "da_scenic_photo", - "name": "Scenic Photo", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "scenic-photo", - "preview_url": "https://dawidolko.github.io/Website-Templates/scenic-photo/", - "description": "Scenic Photo" - } - ] - }, - { - "id": "legal", - "name": "Юридические", - "icon": "briefcase", - "templates": [ - { - "id": "th_justice", - "name": "Justice", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Justice", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Justice/", - "description": "Justice" - }, - { - "id": "th_lawyer", - "name": "Lawyer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lawyer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lawyer/", - "description": "Lawyer" - }, - { - "id": "th_justlaw", - "name": "Justlaw", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/justlaw", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/justlaw/", - "description": "Justlaw" - }, - { - "id": "th_texas_lawyer_2", - "name": "Texas Lawyer 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Texas-Lawyer-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Texas-Lawyer-2/", - "description": "Texas Lawyer 2" - }, - { - "id": "th_thelawyer", - "name": "Thelawyer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/thelawyer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/thelawyer/", - "description": "Thelawyer" - }, - { - "id": "th_star_law", - "name": "Star Law", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/star-law", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/star-law/", - "description": "Star Law" - }, - { - "id": "th_lawride", - "name": "Lawride", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lawride", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lawride/", - "description": "Lawride" - }, - { - "id": "th_ariclaw", - "name": "Ariclaw", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ariclaw", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ariclaw/", - "description": "Ariclaw" - }, - { - "id": "th_lawful", - "name": "Lawful", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lawful", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lawful/", - "description": "Lawful" - } - ] - }, - { - "id": "other", - "name": "Разное", - "icon": "chart-bar", - "templates": [ - { - "id": "th_gulp_npm_mainfiles", - "name": "Gulp Npm Mainfiles", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gulp-npm-mainfiles", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gulp-npm-mainfiles/", - "description": "Push \"mainfiles\" from node_modules to a specific folder" - }, - { - "id": "th_rellax", - "name": "Rellax", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rellax", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rellax/", - "description": "jQuery Rellax Plugin - Parallax awesomeness" - }, - { - "id": "th_ava", - "name": "Ava", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ava", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ava/", - "description": "Ava" - }, - { - "id": "th_100_template_list", - "name": "100 Template List", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/100-template-list", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/100-template-list/", - "description": "100 Template List" - }, - { - "id": "th_electro", - "name": "Electro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/electro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/electro/", - "description": "Electro" - }, - { - "id": "th_mazer", - "name": "Mazer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mazer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mazer/", - "description": "Mazer" - }, - { - "id": "th_titan", - "name": "Titan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/titan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/titan/", - "description": "Multipurpose HTML5 Website Template" - }, - { - "id": "th_ogani", - "name": "Ogani", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ogani", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ogani/", - "description": "Ogani" - }, - { - "id": "th_garo_estate", - "name": "Garo Estate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/garo-estate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/garo-estate/", - "description": "Garo Estate" - }, - { - "id": "th_darkpan", - "name": "Darkpan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/darkpan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/darkpan/", - "description": "Darkpan" - }, - { - "id": "th_constra", - "name": "Constra", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/constra", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/constra/", - "description": "Constra" - }, - { - "id": "th_amado", - "name": "Amado", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/amado", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/amado/", - "description": "Amado" - }, - { - "id": "th_timer_html", - "name": "Timer Html", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/timer-html", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/timer-html/", - "description": "Timer Html" - }, - { - "id": "th_purple_react", - "name": "Purple React", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/purple-react", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/purple-react/", - "description": "Purple React" - }, - { - "id": "th_dashmin", - "name": "Dashmin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dashmin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dashmin/", - "description": "Dashmin" - }, - { - "id": "th_anime", - "name": "Anime", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/anime", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/anime/", - "description": "Anime" - }, - { - "id": "th_awesome1", - "name": "Awesome1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/awesome1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/awesome1/", - "description": "Awesome1" - }, - { - "id": "th_skydash", - "name": "Skydash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/skydash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/skydash/", - "description": "Skydash" - }, - { - "id": "th_dashtreme", - "name": "Dashtreme", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dashtreme", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dashtreme/", - "description": "Dashtreme" - }, - { - "id": "th_atlas", - "name": "Atlas", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/atlas", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/atlas/", - "description": "Atlas" - }, - { - "id": "th_asentus", - "name": "Asentus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Asentus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Asentus/", - "description": "Asentus" - }, - { - "id": "th_awesplash", - "name": "Awesplash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/awesplash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/awesplash/", - "description": "Awesplash" - }, - { - "id": "th_flusk", - "name": "Flusk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Flusk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Flusk/", - "description": "Flusk - A Responsive Multi-purpose Website Template with bootstrap 3" - }, - { - "id": "th_restoran", - "name": "Restoran", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/restoran", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/restoran/", - "description": "Restoran" - }, - { - "id": "th_notes_html_template", - "name": "Notes Html Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/notes-html-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/notes-html-template/", - "description": "Notes Html Template" - }, - { - "id": "th_arsha", - "name": "Arsha", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/arsha", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/arsha/", - "description": "Arsha" - }, - { - "id": "th_quixlab", - "name": "Quixlab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/quixlab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/quixlab/", - "description": "Quixlab" - }, - { - "id": "th_profile_bootstrap", - "name": "Profile Bootstrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/profile-bootstrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/profile-bootstrap/", - "description": "Profile Bootstrap" - }, - { - "id": "th_made", - "name": "Made", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/made", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/made/", - "description": "Made" - }, - { - "id": "th_royal", - "name": "Royal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/royal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/royal/", - "description": "Royal" - }, - { - "id": "th_meetme", - "name": "Meetme", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/meetme", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/meetme/", - "description": "Meetme" - }, - { - "id": "th_wish", - "name": "Wish", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wish", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wish/", - "description": "Wish" - }, - { - "id": "th_karl", - "name": "Karl", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/karl", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/karl/", - "description": "Karl" - }, - { - "id": "th_clark", - "name": "Clark", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/clark", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/clark/", - "description": "Clark" - }, - { - "id": "th_sept", - "name": "Sept", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sept", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sept/", - "description": "Sept" - }, - { - "id": "th_megakit", - "name": "Megakit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/megakit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/megakit/", - "description": "Megakit" - }, - { - "id": "th_white_pro", - "name": "White Pro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/white_pro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/white_pro/", - "description": "White Pro" - }, - { - "id": "th_devfolio", - "name": "Devfolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/devfolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/devfolio/", - "description": "Devfolio" - }, - { - "id": "th_cyborg", - "name": "Cyborg", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cyborg", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cyborg/", - "description": "Cyborg" - }, - { - "id": "th_cryptocoin", - "name": "Cryptocoin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/CryptoCoin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/CryptoCoin/", - "description": "Cryptocoin" - }, - { - "id": "th_proman", - "name": "Proman", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/proman", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/proman/", - "description": "Proman" - }, - { - "id": "th_jackson", - "name": "Jackson", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jackson", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jackson/", - "description": "Jackson" - }, - { - "id": "th_original", - "name": "Original", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/original", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/original/", - "description": "Original" - }, - { - "id": "th_elegant", - "name": "Elegant", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elegant", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elegant/", - "description": "Elegant" - }, - { - "id": "th_material_able", - "name": "Material Able", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material_able", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material_able/", - "description": "Material Able" - }, - { - "id": "th_tale", - "name": "Tale", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tale", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tale/", - "description": "Tale" - }, - { - "id": "th_finanza", - "name": "Finanza", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/finanza", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/finanza/", - "description": "Finanza" - }, - { - "id": "th_industrio", - "name": "Industrio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Industrio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Industrio/", - "description": "Industrio" - }, - { - "id": "th_furn", - "name": "Furn.", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/furn.", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/furn./", - "description": "Furn." - }, - { - "id": "th_elate", - "name": "Elate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elate/", - "description": "Elate" - }, - { - "id": "th_boxer", - "name": "Boxer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/boxer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/boxer/", - "description": "Boxer" - }, - { - "id": "th_click", - "name": "Click", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/click", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/click/", - "description": "Responsive Site" - }, - { - "id": "th_famms", - "name": "Famms", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/famms", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/famms/", - "description": "Famms" - }, - { - "id": "th_arcade", - "name": "Arcade", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/arcade", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/arcade/", - "description": "Arcade" - }, - { - "id": "th_edu_meeting", - "name": "Edu Meeting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/edu-meeting", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/edu-meeting/", - "description": "Edu Meeting" - }, - { - "id": "th_able_pro", - "name": "Able Pro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/able_pro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/able_pro/", - "description": "Able Pro" - }, - { - "id": "th_jobfinderportal", - "name": "Jobfinderportal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jobfinderportal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jobfinderportal/", - "description": "Jobfinderportal" - }, - { - "id": "th_pluto", - "name": "Pluto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pluto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pluto/", - "description": "Pluto" - }, - { - "id": "th_free_bundle_2022", - "name": "Free Bundle 2022", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/free-bundle-2022", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/free-bundle-2022/", - "description": "Free Bundle 2022" - }, - { - "id": "th_a_world", - "name": "A World", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/a-world", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/a-world/", - "description": "A World" - }, - { - "id": "th_gardener", - "name": "Gardener", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gardener", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gardener/", - "description": "Gardener" - }, - { - "id": "th_milky", - "name": "Milky", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/milky", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/milky/", - "description": "Milky" - }, - { - "id": "th_prixima", - "name": "Prixima", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/prixima", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/prixima/", - "description": "Prixima" - }, - { - "id": "th_flat_able", - "name": "Flat Able", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/flat_able", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/flat_able/", - "description": "Flat Able" - }, - { - "id": "th_solartec", - "name": "Solartec", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/solartec", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/solartec/", - "description": "Solartec" - }, - { - "id": "th_fruitkha", - "name": "Fruitkha", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fruitkha", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fruitkha/", - "description": "Fruitkha" - }, - { - "id": "th_karma", - "name": "Karma", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/karma", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/karma/", - "description": "Karma" - }, - { - "id": "th_eflyer", - "name": "Eflyer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eflyer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eflyer/", - "description": "Eflyer" - }, - { - "id": "th_focus_2", - "name": "Focus 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/focus-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/focus-2/", - "description": "Focus 2" - }, - { - "id": "th_100_template_bundle", - "name": "100 Template Bundle", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/100-template-bundle", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/100-template-bundle/", - "description": "100 Template Bundle" - }, - { - "id": "th_ashion", - "name": "Ashion", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ashion", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ashion/", - "description": "Ashion" - }, - { - "id": "th_baker", - "name": "Baker", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/baker", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/baker/", - "description": "Baker" - }, - { - "id": "th_drivin", - "name": "Drivin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/drivin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/drivin/", - "description": "Drivin" - }, - { - "id": "th_keto", - "name": "Keto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/keto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/keto/", - "description": "Keto" - }, - { - "id": "th_videograph", - "name": "Videograph", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/videograph", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/videograph/", - "description": "Videograph" - }, - { - "id": "th_kidkinder", - "name": "Kidkinder", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kidkinder", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kidkinder/", - "description": "Kidkinder" - }, - { - "id": "th_patrix", - "name": "Patrix", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/patrix", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/patrix/", - "description": "Patrix" - }, - { - "id": "th_majestic_2", - "name": "Majestic 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/majestic-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/majestic-2/", - "description": "Majestic 2" - }, - { - "id": "th_novena", - "name": "Novena", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/novena", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/novena/", - "description": "Novena" - }, - { - "id": "th_chain", - "name": "Chain", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/chain", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/chain/", - "description": "Chain" - }, - { - "id": "th_mega_able", - "name": "Mega Able", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mega_able", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mega_able/", - "description": "Mega Able" - }, - { - "id": "th_mark", - "name": "Mark", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mark", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mark/", - "description": "Mark" - }, - { - "id": "th_stride", - "name": "Stride", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stride", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stride/", - "description": "Stride" - }, - { - "id": "th_makan", - "name": "Makan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/makan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/makan/", - "description": "Makan" - }, - { - "id": "th_sona", - "name": "Sona", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sona", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sona/", - "description": "Sona" - }, - { - "id": "th_kider", - "name": "Kider", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kider", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kider/", - "description": "Kider" - }, - { - "id": "th_dgcom", - "name": "Dgcom", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dgcom", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dgcom/", - "description": "Dgcom" - }, - { - "id": "th_chariteam", - "name": "Chariteam", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/chariteam", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/chariteam/", - "description": "Chariteam" - }, - { - "id": "th_insure", - "name": "Insure", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/insure", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/insure/", - "description": "Insure" - }, - { - "id": "th_connect_plus", - "name": "Connect Plus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/connect-plus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/connect-plus/", - "description": "Connect Plus" - }, - { - "id": "th_satner", - "name": "Satner", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/satner", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/satner/", - "description": "Satner" - }, - { - "id": "th_boldo", - "name": "Boldo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/boldo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/boldo/", - "description": "Boldo" - }, - { - "id": "th_footwear", - "name": "Footwear", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/footwear", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/footwear/", - "description": "Footwear" - }, - { - "id": "th_bizconsult", - "name": "Bizconsult", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bizconsult", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bizconsult/", - "description": "Bizconsult" - }, - { - "id": "th_unfold", - "name": "Unfold", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/unfold", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/unfold/", - "description": "Unfold" - }, - { - "id": "th_spica", - "name": "Spica", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/spica", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/spica/", - "description": "Spica" - }, - { - "id": "th_zoofari", - "name": "Zoofari", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/zoofari", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/zoofari/", - "description": "Zoofari" - }, - { - "id": "th_arkitektur", - "name": "Arkitektur", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/arkitektur", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/arkitektur/", - "description": "Arkitektur" - }, - { - "id": "th_soccer", - "name": "Soccer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/soccer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/soccer/", - "description": "Soccer" - }, - { - "id": "th_pavo", - "name": "Pavo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pavo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pavo/", - "description": "Pavo" - }, - { - "id": "th_montana", - "name": "Montana", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/montana", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/montana/", - "description": "Montana" - }, - { - "id": "th_apex", - "name": "Apex", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/apex", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/apex/", - "description": "Apex" - }, - { - "id": "th_gohub", - "name": "Gohub", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gohub", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gohub/", - "description": "Gohub" - }, - { - "id": "th_tinydash", - "name": "Tinydash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tinydash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tinydash/", - "description": "Tinydash" - }, - { - "id": "th_watch_2", - "name": "Watch 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/watch-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/watch-2/", - "description": "Watch 2" - }, - { - "id": "th_mirko", - "name": "Mirko", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mirko", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mirko/", - "description": "Mirko" - }, - { - "id": "th_securex", - "name": "Securex", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/securex", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/securex/", - "description": "Securex" - }, - { - "id": "th_pharma", - "name": "Pharma", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pharma", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pharma/", - "description": "Pharma" - }, - { - "id": "th_sogo", - "name": "Sogo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sogo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sogo/", - "description": "Sogo" - }, - { - "id": "th_crypto", - "name": "Crypto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/crypto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/crypto/", - "description": "Crypto" - }, - { - "id": "th_courier", - "name": "Courier", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/courier", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/courier/", - "description": "Courier" - }, - { - "id": "th_clyde", - "name": "Clyde", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/clyde", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/clyde/", - "description": "Clyde" - }, - { - "id": "th_jadoo", - "name": "Jadoo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jadoo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jadoo/", - "description": "Jadoo" - }, - { - "id": "th_get_ready", - "name": "Get Ready", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/get-ready", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/get-ready/", - "description": "Get Ready" - }, - { - "id": "th_nomad_force", - "name": "Nomad Force", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nomad-force", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nomad-force/", - "description": "Nomad Force" - }, - { - "id": "th_djoz", - "name": "Djoz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Djoz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Djoz/", - "description": "DJoz-Free Template " - }, - { - "id": "th_cakezone", - "name": "Cakezone", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cakezone", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cakezone/", - "description": "Cakezone" - }, - { - "id": "th_logistica", - "name": "Logistica", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/logistica", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/logistica/", - "description": "Logistica" - }, - { - "id": "th_aranoz", - "name": "Aranoz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aranoz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aranoz/", - "description": "Aranoz" - }, - { - "id": "th_aircon", - "name": "Aircon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aircon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aircon/", - "description": "Aircon" - }, - { - "id": "th_welfare", - "name": "Welfare", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/welfare", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/welfare/", - "description": "Welfare" - }, - { - "id": "th_orthoc", - "name": "Orthoc", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/orthoc", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/orthoc/", - "description": "Orthoc" - }, - { - "id": "th_frutika", - "name": "Frutika", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/frutika", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/frutika/", - "description": "Frutika" - }, - { - "id": "th_eiser", - "name": "Eiser", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eiser", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eiser/", - "description": "Eiser" - }, - { - "id": "th_faster", - "name": "Faster", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/faster", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/faster/", - "description": "Faster" - }, - { - "id": "th_soffer", - "name": "Soffer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/soffer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/soffer/", - "description": "Soffer" - }, - { - "id": "th_voler", - "name": "Voler", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/voler", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/voler/", - "description": "Voler" - }, - { - "id": "th_klinik", - "name": "Klinik", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/klinik", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/klinik/", - "description": "Klinik" - }, - { - "id": "th_live_doc", - "name": "Live Doc", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/live-doc", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/live-doc/", - "description": "Live Doc" - }, - { - "id": "th_logisticexpress", - "name": "Logisticexpress", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/logisticexpress", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/logisticexpress/", - "description": "Logisticexpress" - }, - { - "id": "th_builerz", - "name": "Builerz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/builerz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/builerz/", - "description": "Builerz" - }, - { - "id": "th_ace", - "name": "Ace", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ace", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ace/", - "description": "Ace" - }, - { - "id": "th_kards", - "name": "Kards", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kards", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kards/", - "description": "Kards" - }, - { - "id": "th_quantum_able", - "name": "Quantum Able", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/quantum_able", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/quantum_able/", - "description": "Quantum Able" - }, - { - "id": "th_guruable", - "name": "Guruable", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/guruable", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/guruable/", - "description": "Guruable" - }, - { - "id": "th_elen", - "name": "Elen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elen/", - "description": "Elen" - }, - { - "id": "th_violet", - "name": "Violet", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/violet", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/violet/", - "description": "Violet" - }, - { - "id": "th_webuni", - "name": "Webuni", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/webuni", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/webuni/", - "description": "Webuni" - }, - { - "id": "th_kiddos", - "name": "Kiddos", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kiddos", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kiddos/", - "description": "Kiddos" - }, - { - "id": "th_jobentry", - "name": "Jobentry", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jobentry", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jobentry/", - "description": "Jobentry" - }, - { - "id": "th_webuild", - "name": "Webuild", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/webuild", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/webuild/", - "description": "Webuild" - }, - { - "id": "th_direngine", - "name": "Direngine", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/direngine", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/direngine/", - "description": "Direngine" - }, - { - "id": "th_painter", - "name": "Painter", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/painter", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/painter/", - "description": "Painter" - }, - { - "id": "th_onix", - "name": "Onix", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/onix", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/onix/", - "description": "Onix" - }, - { - "id": "th_deluxe", - "name": "Deluxe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/deluxe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/deluxe/", - "description": "Deluxe" - }, - { - "id": "th_aroma", - "name": "Aroma", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aroma", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aroma/", - "description": "Aroma" - }, - { - "id": "th_landmark", - "name": "Landmark", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/landmark", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/landmark/", - "description": "Landmark" - }, - { - "id": "th_zacson", - "name": "Zacson", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/zacson", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/zacson/", - "description": "Zacson" - }, - { - "id": "th_academics", - "name": "Academics", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/academics", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/academics/", - "description": "Academics" - }, - { - "id": "th_sterial", - "name": "Sterial", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sterial", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sterial/", - "description": "Sterial" - }, - { - "id": "th_eduwell", - "name": "Eduwell", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eduwell", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eduwell/", - "description": "Eduwell" - }, - { - "id": "th_pacific", - "name": "Pacific", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pacific", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pacific/", - "description": "Pacific" - }, - { - "id": "th_volt", - "name": "Volt", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/volt", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/volt/", - "description": "Volt" - }, - { - "id": "th_elma", - "name": "Elma", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elma", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elma/", - "description": "Elma" - }, - { - "id": "th_astro_motion", - "name": "Astro Motion", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/astro-motion", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/astro-motion/", - "description": "Astro Motion" - }, - { - "id": "th_knight", - "name": "Knight", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/knight", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/knight/", - "description": "Knight" - }, - { - "id": "th_tasteit", - "name": "Tasteit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tasteit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tasteit/", - "description": "Tasteit" - }, - { - "id": "th_enlight", - "name": "Enlight", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/enlight", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/enlight/", - "description": "Enlight" - }, - { - "id": "th_essence", - "name": "Essence", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/essence", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/essence/", - "description": "Essence" - }, - { - "id": "th_thegrill", - "name": "Thegrill", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/thegrill", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/thegrill/", - "description": "Thegrill" - }, - { - "id": "th_woody", - "name": "Woody", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/woody", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/woody/", - "description": "Woody" - }, - { - "id": "th_tropika", - "name": "Tropika", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tropika", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tropika/", - "description": "Tropika" - }, - { - "id": "th_balay", - "name": "Balay", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/balay", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/balay/", - "description": "Balay" - }, - { - "id": "th_kiddy", - "name": "Kiddy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kiddy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kiddy/", - "description": "Kiddy" - }, - { - "id": "th_traffico", - "name": "Traffico", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/traffico", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/traffico/", - "description": "Traffico" - }, - { - "id": "th_cake", - "name": "Cake", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cake", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cake/", - "description": "Cake" - }, - { - "id": "th_delicious", - "name": "Delicious", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/delicious", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/delicious/", - "description": "Delicious" - }, - { - "id": "th_sprout", - "name": "Sprout", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Sprout", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Sprout/", - "description": "Comimg Soon Template" - }, - { - "id": "th_job_listing", - "name": "Job Listing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/job-listing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/job-listing/", - "description": "Job Listing" - }, - { - "id": "th_fox", - "name": "Fox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fox/", - "description": "Fox" - }, - { - "id": "th_phozogy", - "name": "Phozogy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/phozogy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/phozogy/", - "description": "Phozogy" - }, - { - "id": "th_noah", - "name": "Noah", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/noah", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/noah/", - "description": "Noah" - }, - { - "id": "th_guruable2", - "name": "Guruable2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/guruable2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/guruable2/", - "description": "Guruable2" - }, - { - "id": "th_accounting", - "name": "Accounting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/accounting", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/accounting/", - "description": "Accounting" - }, - { - "id": "th_ensurance", - "name": "Ensurance", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ensurance", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ensurance/", - "description": "Ensurance" - }, - { - "id": "th_alazea", - "name": "Alazea", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/alazea", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/alazea/", - "description": "Alazea" - }, - { - "id": "th_sonar", - "name": "Sonar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sonar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sonar/", - "description": "Sonar" - }, - { - "id": "th_rezume", - "name": "Rezume", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rezume", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rezume/", - "description": "Rezume" - }, - { - "id": "th_fashi", - "name": "Fashi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fashi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fashi/", - "description": "Fashi" - }, - { - "id": "th_voyage_2", - "name": "Voyage 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/voyage-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/voyage-2/", - "description": "Voyage 2" - }, - { - "id": "th_docmed", - "name": "Docmed", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/docmed", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/docmed/", - "description": "Docmed" - }, - { - "id": "th_charifit", - "name": "Charifit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/charifit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/charifit/", - "description": "Charifit" - }, - { - "id": "th_loan", - "name": "Loan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/loan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/loan/", - "description": "Loan" - }, - { - "id": "th_digimedia", - "name": "Digimedia", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/digimedia", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/digimedia/", - "description": "Digimedia" - }, - { - "id": "th_studylab", - "name": "Studylab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/studylab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/studylab/", - "description": "Studylab" - }, - { - "id": "th_seapalace", - "name": "Seapalace", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/seapalace", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/seapalace/", - "description": "Seapalace" - }, - { - "id": "th_corso", - "name": "Corso", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/corso", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/corso/", - "description": "Corso" - }, - { - "id": "th_tasty", - "name": "Tasty", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tasty", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tasty/", - "description": "Tasty" - }, - { - "id": "th_timezone", - "name": "Timezone", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/timezone", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/timezone/", - "description": "Timezone" - }, - { - "id": "th_collab", - "name": "Collab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/collab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/collab/", - "description": "Collab" - }, - { - "id": "th_megakit_2", - "name": "Megakit 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/megakit-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/megakit-2/", - "description": "Megakit 2" - }, - { - "id": "th_eclipse", - "name": "Eclipse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eclipse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eclipse/", - "description": "Eclipse" - }, - { - "id": "th_epnweb", - "name": "Epnweb", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/epnweb", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/epnweb/", - "description": "Epnweb" - }, - { - "id": "th_brber", - "name": "Brber", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/brber", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/brber/", - "description": "Brber" - }, - { - "id": "th_tivo", - "name": "Tivo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tivo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tivo/", - "description": "Tivo" - }, - { - "id": "th_jobboard", - "name": "Jobboard", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jobboard", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jobboard/", - "description": "Jobboard" - }, - { - "id": "th_servion", - "name": "Servion", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/servion", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/servion/", - "description": "Servion" - }, - { - "id": "th_jony", - "name": "Jony", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jony", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jony/", - "description": "Jony" - }, - { - "id": "th_theplaza", - "name": "Theplaza", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/theplaza", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/theplaza/", - "description": "Theplaza" - }, - { - "id": "th_manup", - "name": "Manup", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/manup", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/manup/", - "description": "Manup" - }, - { - "id": "th_material_kit_2", - "name": "Material Kit 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-kit-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-kit-2/", - "description": "Material Kit 2" - }, - { - "id": "th_edustage", - "name": "Edustage", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/edustage", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/edustage/", - "description": "Edustage" - }, - { - "id": "th_believe", - "name": "Believe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/believe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/believe/", - "description": "Believe" - }, - { - "id": "th_desi_2", - "name": "Desi 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/desi-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/desi-2/", - "description": "Desi 2" - }, - { - "id": "th_medic", - "name": "Medic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medic/", - "description": "Medic" - }, - { - "id": "th_gemdev", - "name": "Gemdev", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gemdev", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gemdev/", - "description": "Gemdev" - }, - { - "id": "th_vizew", - "name": "Vizew", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vizew", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vizew/", - "description": "Vizew" - }, - { - "id": "th_little_squirrel", - "name": "Little Squirrel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/little-squirrel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/little-squirrel/", - "description": "Little Squirrel" - }, - { - "id": "th_etrain", - "name": "Etrain", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/etrain", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/etrain/", - "description": "Etrain" - }, - { - "id": "th_marshmallow", - "name": "Marshmallow", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/marshmallow", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/marshmallow/", - "description": "Marshmallow" - }, - { - "id": "th_laundry", - "name": "Laundry", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/laundry", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/laundry/", - "description": "Laundry" - }, - { - "id": "th_ezuca", - "name": "Ezuca", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ezuca", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ezuca/", - "description": "Ezuca" - }, - { - "id": "th_tulen", - "name": "Tulen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tulen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tulen/", - "description": "Tulen" - }, - { - "id": "th_spify", - "name": "Spify", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/spify", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/spify/", - "description": "Spify" - }, - { - "id": "th_ronaldo", - "name": "Ronaldo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ronaldo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ronaldo/", - "description": "Ronaldo" - }, - { - "id": "th_fundraiser", - "name": "Fundraiser", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fundraiser", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fundraiser/", - "description": "Fundraiser" - }, - { - "id": "th_sevi", - "name": "Sevi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sevi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sevi/", - "description": "Sevi" - }, - { - "id": "th_safia", - "name": "Safia", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Safia", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Safia/", - "description": "Safia" - }, - { - "id": "th_educenter", - "name": "Educenter", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/educenter", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/educenter/", - "description": "Educenter" - }, - { - "id": "th_rhea", - "name": "Rhea", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Rhea", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Rhea/", - "description": "Rhea" - }, - { - "id": "th_equipo", - "name": "Equipo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/equipo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/equipo/", - "description": "Equipo" - }, - { - "id": "th_dtox", - "name": "Dtox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dtox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dtox/", - "description": "Dtox" - }, - { - "id": "th_nitro2", - "name": "Nitro2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nitro2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nitro2/", - "description": "Nitro2" - }, - { - "id": "th_klean", - "name": "Klean", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/klean", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/klean/", - "description": "Live link" - }, - { - "id": "th_villa", - "name": "Villa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/villa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/villa/", - "description": "Villa" - }, - { - "id": "th_harbor_lights", - "name": "Harbor Lights", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/harbor-lights", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/harbor-lights/", - "description": "Harbor Lights" - }, - { - "id": "th_beko", - "name": "Beko", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/beko", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/beko/", - "description": "Beko" - }, - { - "id": "th_melan", - "name": "Melan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/melan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/melan/", - "description": "Melan" - }, - { - "id": "th_greenhost", - "name": "Greenhost", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/greenhost", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/greenhost/", - "description": "Greenhost" - }, - { - "id": "th_edu_prix", - "name": "Edu Prix", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/edu-prix", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/edu-prix/", - "description": "Edu Prix" - }, - { - "id": "th_winkel", - "name": "Winkel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/winkel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/winkel/", - "description": "Winkel" - }, - { - "id": "th_burgerking", - "name": "Burgerking", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/burgerking", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/burgerking/", - "description": "Burgerking" - }, - { - "id": "th_next_page", - "name": "Next Page", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/next-page", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/next-page/", - "description": "Next Page" - }, - { - "id": "th_marian", - "name": "Marian", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/marian", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/marian/", - "description": "Marian" - }, - { - "id": "th_azzara", - "name": "Azzara", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/azzara", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/azzara/", - "description": "Azzara" - }, - { - "id": "th_nubis", - "name": "Nubis", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nubis", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nubis/", - "description": "Nubis" - }, - { - "id": "th_petsitting", - "name": "Petsitting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/petsitting", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/petsitting/", - "description": "Petsitting" - }, - { - "id": "th_bitcypo", - "name": "Bitcypo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bitcypo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bitcypo/", - "description": "Bitcypo" - }, - { - "id": "th_feliciano", - "name": "Feliciano", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/feliciano", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/feliciano/", - "description": "Feliciano" - }, - { - "id": "th_givehope", - "name": "Givehope", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/givehope", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/givehope/", - "description": "Givehope" - }, - { - "id": "th_unicat", - "name": "Unicat", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/unicat", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/unicat/", - "description": "Unicat" - }, - { - "id": "th_classimax", - "name": "Classimax", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/classimax", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/classimax/", - "description": "Bootstrap 4 classified ad website template" - }, - { - "id": "th_palatin", - "name": "Palatin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/palatin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/palatin/", - "description": "Palatin" - }, - { - "id": "th_aler", - "name": "Aler", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aler", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aler/", - "description": "Aler" - }, - { - "id": "th_motto", - "name": "Motto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/motto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/motto/", - "description": "Motto" - }, - { - "id": "th_wilcon", - "name": "Wilcon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wilcon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wilcon/", - "description": "Wilcon" - }, - { - "id": "th_browny", - "name": "Browny", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/browny", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/browny/", - "description": "Browny" - }, - { - "id": "th_raising", - "name": "Raising", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/raising", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/raising/", - "description": "Raising" - }, - { - "id": "th_art_museum", - "name": "Art Museum", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/art-museum", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/art-museum/", - "description": "Art Museum" - }, - { - "id": "th_elegence", - "name": "Elegence", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elegence", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elegence/", - "description": "Elegence" - }, - { - "id": "th_medico", - "name": "Medico", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medico", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medico/", - "description": "Medico" - }, - { - "id": "th_pharmative", - "name": "Pharmative", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pharmative", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pharmative/", - "description": "Pharmative" - }, - { - "id": "th_adward", - "name": "Adward", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adward", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adward/", - "description": "Adward" - }, - { - "id": "th_homeland", - "name": "Homeland", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/homeland", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/homeland/", - "description": "Homeland" - }, - { - "id": "th_hvac", - "name": "Hvac", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hvac", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hvac/", - "description": "Hvac" - }, - { - "id": "th_known", - "name": "Known", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/known", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/known/", - "description": "Known" - }, - { - "id": "th_elearn", - "name": "Elearn", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elearn", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elearn/", - "description": "Elearn" - }, - { - "id": "th_medlife", - "name": "Medlife", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medlife", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medlife/", - "description": "Medlife" - }, - { - "id": "th_alimie", - "name": "Alimie", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/alimie", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/alimie/", - "description": "Alimie" - }, - { - "id": "th_burger", - "name": "Burger", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/burger", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/burger/", - "description": "Burger" - }, - { - "id": "th_zinc", - "name": "Zinc", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/zinc", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/zinc/", - "description": "Zinc" - }, - { - "id": "th_executive", - "name": "Executive", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/executive", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/executive/", - "description": "Executive" - }, - { - "id": "th_revo", - "name": "Revo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/revo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/revo/", - "description": "Revo" - }, - { - "id": "th_neumorphism_ui", - "name": "Neumorphism Ui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/neumorphism-ui", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/neumorphism-ui/", - "description": "Neumorphism Ui" - }, - { - "id": "th_lifetrakr", - "name": "Lifetrakr", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lifetrakr", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lifetrakr/", - "description": "Lifetrakr" - }, - { - "id": "th_webhost", - "name": "Webhost", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/webhost", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/webhost/", - "description": "Webhost" - }, - { - "id": "th_ecoverde", - "name": "Ecoverde", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ecoverde", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ecoverde/", - "description": "Ecoverde" - }, - { - "id": "th_mona", - "name": "Mona", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mona", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mona/", - "description": "Mona" - }, - { - "id": "th_sensive", - "name": "Sensive", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sensive", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sensive/", - "description": "Sensive" - }, - { - "id": "th_vacayhome", - "name": "Vacayhome", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vacayhome", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vacayhome/", - "description": "Vacayhome" - }, - { - "id": "th_depot", - "name": "Depot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/depot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/depot/", - "description": "Depot" - }, - { - "id": "th_rage", - "name": "Rage", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rage", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rage/", - "description": "Rage" - }, - { - "id": "th_theriver", - "name": "Theriver", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/theriver", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/theriver/", - "description": "Theriver" - }, - { - "id": "th_devfolio2", - "name": "Devfolio2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/devfolio2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/devfolio2/", - "description": "Devfolio2" - }, - { - "id": "th_yummy", - "name": "Yummy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yummy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yummy/", - "description": "Yummy" - }, - { - "id": "th_genius", - "name": "Genius", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/genius", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/genius/", - "description": "Genius" - }, - { - "id": "th_landscaper", - "name": "Landscaper", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/landscaper", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/landscaper/", - "description": "Landscaper" - }, - { - "id": "th_evans", - "name": "Evans", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/evans", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/evans/", - "description": "Evans" - }, - { - "id": "th_zoufarm", - "name": "Zoufarm", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/zouFarm", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/zouFarm/", - "description": "Zoufarm" - }, - { - "id": "th_places", - "name": "Places", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/places", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/places/", - "description": "Places" - }, - { - "id": "th_eatery_new", - "name": "Eatery New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eatery-new", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eatery-new/", - "description": "Eatery New" - }, - { - "id": "th_edumark", - "name": "Edumark", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/edumark", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/edumark/", - "description": "Edumark" - }, - { - "id": "th_specer", - "name": "Specer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/specer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/specer/", - "description": "Specer" - }, - { - "id": "th_agenda", - "name": "Agenda", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/agenda", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/agenda/", - "description": "Agenda" - }, - { - "id": "th_square", - "name": "Square", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/square", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/square/", - "description": "Square" - }, - { - "id": "th_logic", - "name": "Logic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/logic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/logic/", - "description": "Logic" - }, - { - "id": "th_roberto", - "name": "Roberto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/roberto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/roberto/", - "description": "Roberto" - }, - { - "id": "th_world", - "name": "World", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/world", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/world/", - "description": "World" - }, - { - "id": "th_royal2", - "name": "Royal2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/royal2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/royal2/", - "description": "Royal2" - }, - { - "id": "th_minimus", - "name": "Minimus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/minimus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/minimus/", - "description": "Minimus" - }, - { - "id": "th_jober_desk", - "name": "Jober Desk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jober-desk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jober-desk/", - "description": "Jober Desk" - }, - { - "id": "th_caviar", - "name": "Caviar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/caviar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/caviar/", - "description": "Caviar" - }, - { - "id": "th_stated", - "name": "Stated", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stated", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stated/", - "description": "Stated" - }, - { - "id": "th_podca", - "name": "Podca", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/podca", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/podca/", - "description": "Podca" - }, - { - "id": "th_pretty", - "name": "Pretty", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pretty", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pretty/", - "description": "Pretty" - }, - { - "id": "th_cryptos", - "name": "Cryptos", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cryptos", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cryptos/", - "description": "Cryptos" - }, - { - "id": "th_roofing", - "name": "Roofing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/roofing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/roofing/", - "description": "Roofing" - }, - { - "id": "th_eduland", - "name": "Eduland", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eduland", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eduland/", - "description": "Eduland" - }, - { - "id": "th_nupital", - "name": "Nupital", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Nupital", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Nupital/", - "description": "Nupital" - }, - { - "id": "th_marvel", - "name": "Marvel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/marvel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/marvel/", - "description": "Marvel" - }, - { - "id": "th_ronin", - "name": "Ronin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ronin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ronin/", - "description": "Ronin" - }, - { - "id": "th_dimension", - "name": "Dimension", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dimension", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dimension/", - "description": "Dimension" - }, - { - "id": "th_sunshine", - "name": "Sunshine", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sunshine", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sunshine/", - "description": "Sunshine" - }, - { - "id": "th_infinity", - "name": "Infinity", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/infinity", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/infinity/", - "description": "Infinity" - }, - { - "id": "th_findstate", - "name": "Findstate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/findstate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/findstate/", - "description": "Findstate" - }, - { - "id": "th_humanresources", - "name": "Humanresources", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/humanresources", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/humanresources/", - "description": "Humanresources" - }, - { - "id": "th_mosaic", - "name": "Mosaic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mosaic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mosaic/", - "description": "Mosaic" - }, - { - "id": "th_fanadesh", - "name": "Fanadesh", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fanadesh", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fanadesh/", - "description": "Fanadesh" - }, - { - "id": "th_boto", - "name": "Boto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/boto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/boto/", - "description": "Boto" - }, - { - "id": "th_purple_buzz", - "name": "Purple Buzz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/purple-buzz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/purple-buzz/", - "description": "Purple Buzz" - }, - { - "id": "th_covido", - "name": "Covido", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/covido", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/covido/", - "description": "Covido" - }, - { - "id": "th_waterboat", - "name": "Waterboat", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/waterboat", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/waterboat/", - "description": "Waterboat" - }, - { - "id": "th_mdb", - "name": "Mdb", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mdb", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mdb/", - "description": "Mdb" - }, - { - "id": "th_elit", - "name": "Elit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elit/", - "description": "Elit" - }, - { - "id": "th_credit", - "name": "Credit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/credit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/credit/", - "description": "Credit" - }, - { - "id": "th_logis", - "name": "Logis", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/logis", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/logis/", - "description": "Logis" - }, - { - "id": "th_wiser", - "name": "Wiser", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wiser", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wiser/", - "description": "Wiser" - }, - { - "id": "th_author_colorlib", - "name": "Author Colorlib", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/author-colorlib", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/author-colorlib/", - "description": "Author Colorlib" - }, - { - "id": "th_dente", - "name": "Dente", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dente", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dente/", - "description": "Dente" - }, - { - "id": "th_staging", - "name": "Staging", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/staging", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/staging/", - "description": "Staging" - }, - { - "id": "th_rettro", - "name": "Rettro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rettro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rettro/", - "description": "Rettro" - }, - { - "id": "th_jobest", - "name": "Jobest", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jobest", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jobest/", - "description": "Jobest" - }, - { - "id": "th_yavin", - "name": "Yavin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yavin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yavin/", - "description": "Yavin" - }, - { - "id": "th_bino", - "name": "Bino", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bino", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bino/", - "description": "Bino" - }, - { - "id": "th_logistico", - "name": "Logistico", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/logistico", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/logistico/", - "description": "Logistico" - }, - { - "id": "th_mediplus", - "name": "Mediplus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mediplus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mediplus/", - "description": "Mediplus" - }, - { - "id": "th_jonson", - "name": "Jonson", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jonson", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jonson/", - "description": "Jonson" - }, - { - "id": "th_majestic", - "name": "Majestic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/majestic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/majestic/", - "description": "Majestic" - }, - { - "id": "th_hesed", - "name": "Hesed", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hesed", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hesed/", - "description": "Hesed" - }, - { - "id": "th_louie", - "name": "Louie", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/louie", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/louie/", - "description": "Louie" - }, - { - "id": "th_bizpro1", - "name": "Bizpro1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bizpro1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bizpro1/", - "description": "Bizpro1" - }, - { - "id": "th_miri_ui", - "name": "Miri Ui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/miri-ui", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/miri-ui/", - "description": "Miri Ui" - }, - { - "id": "th_arclabs", - "name": "Arclabs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/arclabs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/arclabs/", - "description": "Arclabs" - }, - { - "id": "th_bocor", - "name": "Bocor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bocor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bocor/", - "description": "Bocor" - }, - { - "id": "th_royalestate", - "name": "Royalestate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/royalestate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/royalestate/", - "description": "Royalestate" - }, - { - "id": "th_stayhome", - "name": "Stayhome", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stayhome", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stayhome/", - "description": "Stayhome" - }, - { - "id": "th_conference_cl", - "name": "Conference Cl", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/conference-CL", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/conference-CL/", - "description": "Conference Cl" - }, - { - "id": "th_civic", - "name": "Civic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/civic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/civic/", - "description": "Civic" - }, - { - "id": "th_listing", - "name": "Listing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/listing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/listing/", - "description": "Listing" - }, - { - "id": "th_epitome", - "name": "Epitome", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/epitome", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/epitome/", - "description": "Epitome" - }, - { - "id": "th_nikki", - "name": "Nikki", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nikki", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nikki/", - "description": "Nikki" - }, - { - "id": "th_ahana", - "name": "Ahana", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ahana", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ahana/", - "description": "Ahana" - }, - { - "id": "th_garage", - "name": "Garage", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/garage", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/garage/", - "description": "Garage" - }, - { - "id": "th_kairos", - "name": "Kairos", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kairos", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kairos/", - "description": "Kairos" - }, - { - "id": "th_environmentalorganization", - "name": "Environmentalorganization", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/environmentalorganization", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/environmentalorganization/", - "description": "Environmentalorganization" - }, - { - "id": "th_safs", - "name": "Safs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/safs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/safs/", - "description": "Safs" - }, - { - "id": "th_activitar", - "name": "Activitar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/activitar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/activitar/", - "description": "Activitar" - }, - { - "id": "th_kross", - "name": "Kross", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kross", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kross/", - "description": "Kross" - }, - { - "id": "th_exclusivity", - "name": "Exclusivity", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/exclusivity", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/exclusivity/", - "description": "For demo and downloads go to this link:" - }, - { - "id": "th_vortex", - "name": "Vortex", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vortex", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vortex/", - "description": "Vortex" - }, - { - "id": "th_invits", - "name": "Invits", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/invits", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/invits/", - "description": "Invits" - }, - { - "id": "th_lifecoach", - "name": "Lifecoach", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lifecoach", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lifecoach/", - "description": "Lifecoach" - }, - { - "id": "th_pato", - "name": "Pato", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pato", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pato/", - "description": "Pato" - }, - { - "id": "th_job_board_2", - "name": "Job Board 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/job-board-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/job-board-2/", - "description": "Job Board 2" - }, - { - "id": "th_yummy2", - "name": "Yummy2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yummy2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yummy2/", - "description": "Yummy2" - }, - { - "id": "th_aesthetic", - "name": "Aesthetic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aesthetic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aesthetic/", - "description": "Aesthetic" - }, - { - "id": "th_joson", - "name": "Joson", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/joson", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/joson/", - "description": "Joson" - }, - { - "id": "th_deerhost", - "name": "Deerhost", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/deerhost", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/deerhost/", - "description": "Deerhost" - }, - { - "id": "th_wed", - "name": "Wed", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wed", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wed/", - "description": "Wed" - }, - { - "id": "th_gutim", - "name": "Gutim", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gutim", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gutim/", - "description": "Gutim" - }, - { - "id": "th_dominic", - "name": "Dominic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dominic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dominic/", - "description": "Dominic" - }, - { - "id": "th_watch", - "name": "Watch", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/watch", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/watch/", - "description": "Watch" - }, - { - "id": "th_medino", - "name": "Medino", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medino", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medino/", - "description": "Medino" - }, - { - "id": "th_drpro", - "name": "Drpro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/drpro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/drpro/", - "description": "Drpro" - }, - { - "id": "th_savory", - "name": "Savory", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Savory", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Savory/", - "description": "Savory" - }, - { - "id": "th_mixtape", - "name": "Mixtape", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mixtape", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mixtape/", - "description": "Mixtape" - }, - { - "id": "th_ninestars", - "name": "Ninestars", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ninestars", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ninestars/", - "description": "Ninestars" - }, - { - "id": "th_meranda", - "name": "Meranda", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/meranda", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/meranda/", - "description": "Meranda" - }, - { - "id": "th_be_one", - "name": "Be One", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/be_one", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/be_one/", - "description": "Be One" - }, - { - "id": "th_cohost", - "name": "Cohost", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cohost", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cohost/", - "description": "Cohost" - }, - { - "id": "th_directing", - "name": "Directing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/directing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/directing/", - "description": "Directing" - }, - { - "id": "th_moderna", - "name": "Moderna", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/moderna", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/moderna/", - "description": "Moderna" - }, - { - "id": "th_trafalgar", - "name": "Trafalgar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trafalgar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trafalgar/", - "description": "Trafalgar" - }, - { - "id": "th_christmas_email", - "name": "Christmas Email", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/christmas-email", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/christmas-email/", - "description": "Christmas Email - A Responsive Christmas Email Template to increase your Christmas sells instantly!" - }, - { - "id": "th_kanun", - "name": "Kanun", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kanun", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kanun/", - "description": "Kanun" - }, - { - "id": "th_skillhunt", - "name": "Skillhunt", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/skillhunt", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/skillhunt/", - "description": "Skillhunt" - }, - { - "id": "th_medi", - "name": "Medi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medi/", - "description": "Medi" - }, - { - "id": "th_buson", - "name": "Buson", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/buson", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/buson/", - "description": "Buson" - }, - { - "id": "th_listrace", - "name": "Listrace", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/listrace", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/listrace/", - "description": "Listrace" - }, - { - "id": "th_sublime", - "name": "Sublime", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sublime", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sublime/", - "description": "Sublime" - }, - { - "id": "th_banker", - "name": "Banker", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/banker", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/banker/", - "description": "Banker" - }, - { - "id": "th_loanday", - "name": "Loanday", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/loanday", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/loanday/", - "description": "Loanday" - }, - { - "id": "th_arbano", - "name": "Arbano", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/arbano", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/arbano/", - "description": "Arbano" - }, - { - "id": "th_citylisting", - "name": "Citylisting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/citylisting", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/citylisting/", - "description": "Citylisting" - }, - { - "id": "th_avo", - "name": "Avo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/avo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/avo/", - "description": "Avo" - }, - { - "id": "th_beyond", - "name": "Beyond", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/beyond", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/beyond/", - "description": "Beyond" - }, - { - "id": "th_andrea", - "name": "Andrea", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/andrea", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/andrea/", - "description": "Andrea" - }, - { - "id": "th_kindle", - "name": "Kindle", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kindle", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kindle/", - "description": "Kindle" - }, - { - "id": "th_simple", - "name": "Simple", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/simple", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/simple/", - "description": "Simple" - }, - { - "id": "th_snapshot", - "name": "Snapshot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/snapshot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/snapshot/", - "description": "Snapshot" - }, - { - "id": "th_energy1", - "name": "Energy1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/energy1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/energy1/", - "description": "Energy1" - }, - { - "id": "th_flatter", - "name": "Flatter", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/flatter", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/flatter/", - "description": "Flatter" - }, - { - "id": "th_dentist", - "name": "Dentist", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dentist", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dentist/", - "description": "Dentist" - }, - { - "id": "th_look", - "name": "Look", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/look", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/look/", - "description": "Look" - }, - { - "id": "th_bizcraft", - "name": "Bizcraft", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bizcraft", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bizcraft/", - "description": "Bizcraft" - }, - { - "id": "th_itsolution", - "name": "Itsolution", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/itsolution", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/itsolution/", - "description": "Itsolution" - }, - { - "id": "th_stamina", - "name": "Stamina", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stamina", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stamina/", - "description": "Stamina" - }, - { - "id": "th_loans2go", - "name": "Loans2Go", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/loans2go", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/loans2go/", - "description": "Loans2Go" - }, - { - "id": "th_invention", - "name": "Invention", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Invention", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Invention/", - "description": "Invention" - }, - { - "id": "th_marco", - "name": "Marco", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/marco", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/marco/", - "description": "Marco" - }, - { - "id": "th_uptown", - "name": "Uptown", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/uptown", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/uptown/", - "description": "Uptown" - }, - { - "id": "th_advanture_2", - "name": "Advanture 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/advanture-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/advanture-2/", - "description": "Advanture 2" - }, - { - "id": "th_major", - "name": "Major", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/major", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/major/", - "description": "Major" - }, - { - "id": "th_workout", - "name": "Workout", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/workout", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/workout/", - "description": "Workout" - }, - { - "id": "th_apart", - "name": "Apart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/apart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/apart/", - "description": "Apart" - }, - { - "id": "th_wemeet", - "name": "Wemeet", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wemeet", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wemeet/", - "description": "Wemeet" - }, - { - "id": "th_dreams", - "name": "Dreams", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dreams", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dreams/", - "description": "Dreams" - }, - { - "id": "th_learnit", - "name": "Learnit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/learnit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/learnit/", - "description": "Learnit" - }, - { - "id": "th_stylistic", - "name": "Stylistic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stylistic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stylistic/", - "description": "Stylistic" - }, - { - "id": "th_snipp", - "name": "Snipp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/snipp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/snipp/", - "description": "Snipp" - }, - { - "id": "th_hazze", - "name": "Hazze", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hazze", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hazze/", - "description": "Hazze" - }, - { - "id": "th_scaffold", - "name": "Scaffold", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/scaffold", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/scaffold/", - "description": "Scaffold" - }, - { - "id": "th_covid", - "name": "Covid", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/covid", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/covid/", - "description": "Covid" - }, - { - "id": "th_amazon_ebook", - "name": "Amazon Ebook", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Amazon-eBook", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Amazon-eBook/", - "description": "Responsive eBook Template" - }, - { - "id": "th_voyage", - "name": "Voyage", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/voyage", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/voyage/", - "description": "Voyage" - }, - { - "id": "th_sentra", - "name": "Sentra", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sentra", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sentra/", - "description": "Sentra" - }, - { - "id": "th_eden", - "name": "Eden", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eden", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eden/", - "description": "Eden" - }, - { - "id": "th_amin", - "name": "Amin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/amin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/amin/", - "description": "Amin" - }, - { - "id": "th_ecoland", - "name": "Ecoland", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ecoland", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ecoland/", - "description": "Ecoland" - }, - { - "id": "th_author", - "name": "Author", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/author", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/author/", - "description": "Author" - }, - { - "id": "th_constructo", - "name": "Constructo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/constructo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/constructo/", - "description": "Constructo" - }, - { - "id": "th_zogin", - "name": "Zogin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/zogin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/zogin/", - "description": "Zogin" - }, - { - "id": "th_ninom", - "name": "Ninom", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ninom", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ninom/", - "description": "Ninom" - }, - { - "id": "th_hiroto", - "name": "Hiroto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hiroto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hiroto/", - "description": "Hiroto- Free Template" - }, - { - "id": "th_chocolux", - "name": "Chocolux", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/chocolux", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/chocolux/", - "description": "Chocolux" - }, - { - "id": "th_alotan", - "name": "Alotan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/alotan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/alotan/", - "description": "Alotan" - }, - { - "id": "th_thevenue", - "name": "Thevenue", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/thevenue", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/thevenue/", - "description": "Thevenue" - }, - { - "id": "th_aievari", - "name": "Aievari", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aievari", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aievari/", - "description": "Aievari" - }, - { - "id": "th_scenic", - "name": "Scenic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/scenic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/scenic/", - "description": "Scenic" - }, - { - "id": "th_swipe", - "name": "Swipe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/swipe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/swipe/", - "description": "Swipe" - }, - { - "id": "th_callie", - "name": "Callie", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/callie", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/callie/", - "description": "Callie" - }, - { - "id": "th_humanity", - "name": "Humanity", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/humanity", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/humanity/", - "description": "Multi Page Non-Profit Template " - }, - { - "id": "th_eatery", - "name": "Eatery", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eatery", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eatery/", - "description": "Eatery" - }, - { - "id": "th_luxe", - "name": "Luxe", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/luxe", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/luxe/", - "description": "Luxe" - }, - { - "id": "th_anipat", - "name": "Anipat", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/anipat", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/anipat/", - "description": "Anipat" - }, - { - "id": "th_pexcon", - "name": "Pexcon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pexcon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pexcon/", - "description": "Pexcon" - }, - { - "id": "th_chiropractic", - "name": "Chiropractic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/chiropractic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/chiropractic/", - "description": "Chiropractic" - }, - { - "id": "th_book", - "name": "Book", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/book", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/book/", - "description": "Book" - }, - { - "id": "th_oxomi", - "name": "Oxomi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/oxomi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/oxomi/", - "description": "Oxomi" - }, - { - "id": "th_energen", - "name": "Energen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/energen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/energen/", - "description": "Energen" - }, - { - "id": "th_judge", - "name": "Judge", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/judge", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/judge/", - "description": "Judge" - }, - { - "id": "th_cyption", - "name": "Cyption", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cyption", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cyption/", - "description": "Cyption" - }, - { - "id": "th_fables", - "name": "Fables", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fables", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fables/", - "description": "Multipurpose Corporation free HTML5 Template" - }, - { - "id": "th_lingua", - "name": "Lingua", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lingua", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lingua/", - "description": "Lingua" - }, - { - "id": "th_kusina", - "name": "Kusina", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kusina", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kusina/", - "description": "Kusina" - }, - { - "id": "th_counselor", - "name": "Counselor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/counselor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/counselor/", - "description": "Counselor" - }, - { - "id": "th_grunt", - "name": "Grunt", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/grunt", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/grunt/", - "description": "Grunt" - }, - { - "id": "th_elderly", - "name": "Elderly", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elderly", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elderly/", - "description": "Elderly" - }, - { - "id": "th_quickloud", - "name": "Quickloud", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/quickloud", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/quickloud/", - "description": "Quickloud" - }, - { - "id": "th_landie", - "name": "Landie", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/landie", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/landie/", - "description": "Landie" - }, - { - "id": "th_treviso", - "name": "Treviso", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/treviso", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/treviso/", - "description": "Treviso" - }, - { - "id": "th_consult", - "name": "Consult", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/consult", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/consult/", - "description": "Consult" - }, - { - "id": "th_nitro", - "name": "Nitro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nitro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nitro/", - "description": "Nitro" - }, - { - "id": "th_journey", - "name": "Journey", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/journey", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/journey/", - "description": "Journey" - }, - { - "id": "th_typerite", - "name": "Typerite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/typerite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/typerite/", - "description": "Typerite" - }, - { - "id": "th_realtors", - "name": "Realtors", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/realtors", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/realtors/", - "description": "Realtors" - }, - { - "id": "th_cassi", - "name": "Cassi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cassi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cassi/", - "description": "Cassi" - }, - { - "id": "th_sierra", - "name": "Sierra", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sierra", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sierra/", - "description": "Sierra" - }, - { - "id": "th_fresh", - "name": "Fresh", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fresh", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fresh/", - "description": "Fresh" - }, - { - "id": "th_softland", - "name": "Softland", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/softland", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/softland/", - "description": "Softland" - }, - { - "id": "th_resta", - "name": "Resta", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/resta", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/resta/", - "description": "Resta" - }, - { - "id": "th_newbiz", - "name": "Newbiz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/newbiz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/newbiz/", - "description": "Newbiz" - }, - { - "id": "th_uza", - "name": "Uza", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/uza", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/uza/", - "description": "Uza" - }, - { - "id": "th_harbor", - "name": "Harbor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/harbor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/harbor/", - "description": "Harbor" - }, - { - "id": "th_linkweb", - "name": "Linkweb", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/linkweb", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/linkweb/", - "description": "Linkweb" - }, - { - "id": "th_south", - "name": "South", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/south", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/south/", - "description": "South" - }, - { - "id": "th_wow", - "name": "Wow", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wow", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wow/", - "description": "Wow" - }, - { - "id": "th_neos", - "name": "Neos", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/neos", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/neos/", - "description": "Neos" - }, - { - "id": "th_bueno", - "name": "Bueno", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bueno", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bueno/", - "description": "Bueno" - }, - { - "id": "th_pressure_washing", - "name": "Pressure Washing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pressure-washing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pressure-washing/", - "description": "Pressure Washing" - }, - { - "id": "th_mamba", - "name": "Mamba", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mamba", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mamba/", - "description": "Mamba" - }, - { - "id": "th_multipurpose", - "name": "Multipurpose", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/multipurpose", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/multipurpose/", - "description": "Multipurpose" - }, - { - "id": "th_rhino", - "name": "Rhino", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rhino", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rhino/", - "description": "Rhino" - }, - { - "id": "th_personify", - "name": "Personify", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/personify", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/personify/", - "description": "Personify" - }, - { - "id": "th_metronic_frontend", - "name": "Metronic Frontend", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Metronic-Frontend", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Metronic-Frontend/", - "description": "Metronic Frontend" - }, - { - "id": "th_sight", - "name": "Sight", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/SIGHT", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/SIGHT/", - "description": "Free Responsive Web Template" - }, - { - "id": "th_skwela", - "name": "Skwela", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/skwela", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/skwela/", - "description": "Skwela" - }, - { - "id": "th_acupuncture", - "name": "Acupuncture", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/acupuncture", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/acupuncture/", - "description": "Acupuncture" - }, - { - "id": "th_azenta", - "name": "Azenta", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/azenta", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/azenta/", - "description": "Azenta" - }, - { - "id": "th_onlineedu", - "name": "Onlineedu", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/onlineedu", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/onlineedu/", - "description": "Onlineedu" - }, - { - "id": "th_surogou", - "name": "Surogou", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/surogou", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/surogou/", - "description": "Surogou" - }, - { - "id": "th_menztailor", - "name": "Menztailor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/menztailor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/menztailor/", - "description": "Menztailor" - }, - { - "id": "th_factory", - "name": "Factory", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Factory", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Factory/", - "description": "Factory" - }, - { - "id": "th_imperial", - "name": "Imperial", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/imperial", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/imperial/", - "description": "Imperial" - }, - { - "id": "th_pure1", - "name": "Pure1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pure1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pure1/", - "description": "Pure1" - }, - { - "id": "th_industire", - "name": "Industire", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/industire", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/industire/", - "description": "Industire" - }, - { - "id": "th_resto", - "name": "Resto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/resto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/resto/", - "description": "Resto" - }, - { - "id": "th_woodrox", - "name": "Woodrox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/woodrox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/woodrox/", - "description": "Woodrox" - }, - { - "id": "th_blanca", - "name": "Blanca", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/blanca", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/blanca/", - "description": "Blanca" - }, - { - "id": "th_archlab", - "name": "Archlab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/archlab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/archlab/", - "description": "Archlab" - }, - { - "id": "th_consulotion", - "name": "Consulotion", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/consulotion", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/consulotion/", - "description": "Consulotion" - }, - { - "id": "th_braxit", - "name": "Braxit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/braxit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/braxit/", - "description": "Braxit" - }, - { - "id": "th_comport", - "name": "Comport", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/comport", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/comport/", - "description": "Comport" - }, - { - "id": "th_instylr", - "name": "Instylr", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/instylr", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/instylr/", - "description": "Instylr" - }, - { - "id": "th_virtualassistant", - "name": "Virtualassistant", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/virtualassistant", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/virtualassistant/", - "description": "Virtualassistant" - }, - { - "id": "th_stisla", - "name": "Stisla", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stisla", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stisla/", - "description": "HTML5 and CSS3 Template Based on Bootstrap 4" - }, - { - "id": "th_coaching", - "name": "Coaching", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/coaching", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/coaching/", - "description": "Coaching" - }, - { - "id": "th_eatwell", - "name": "Eatwell", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eatwell", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eatwell/", - "description": "Eatwell" - }, - { - "id": "th_more", - "name": "More", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/more", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/more/", - "description": "More" - }, - { - "id": "th_hepta", - "name": "Hepta", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hepta", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hepta/", - "description": "Hepta" - }, - { - "id": "th_nest", - "name": "Nest", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nest", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nest/", - "description": "Nest" - }, - { - "id": "th_rabbit", - "name": "Rabbit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rabbit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rabbit/", - "description": "A responsive HTML 5 Template" - }, - { - "id": "th_regna", - "name": "Regna", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/regna", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/regna/", - "description": "Regna" - }, - { - "id": "th_busicol", - "name": "Busicol", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/busicol", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/busicol/", - "description": "Busicol" - }, - { - "id": "th_book_keeping", - "name": "Book Keeping", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/book-keeping", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/book-keeping/", - "description": "Book Keeping" - }, - { - "id": "th_rapid", - "name": "Rapid", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rapid", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rapid/", - "description": "Rapid" - }, - { - "id": "th_br", - "name": "Br", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/br", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/br/", - "description": "Br" - }, - { - "id": "th_redplanet", - "name": "Redplanet", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/redplanet", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/redplanet/", - "description": "Redplanet" - }, - { - "id": "th_teaser", - "name": "Teaser", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/teaser", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/teaser/", - "description": "Teaser" - }, - { - "id": "th_archs", - "name": "Archs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/archs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/archs/", - "description": "Archs" - }, - { - "id": "th_snow", - "name": "Snow", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/snow", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/snow/", - "description": "Snow" - }, - { - "id": "th_steve", - "name": "Steve", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/steve", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/steve/", - "description": "Steve" - }, - { - "id": "th_paradigm_shift", - "name": "Paradigm Shift", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/paradigm-shift", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/paradigm-shift/", - "description": "Paradigm Shift" - }, - { - "id": "th_basco", - "name": "Basco", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/basco", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/basco/", - "description": "Basco" - }, - { - "id": "th_favison", - "name": "Favison", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/favison", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/favison/", - "description": "Favison" - }, - { - "id": "th_brainwave", - "name": "Brainwave", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/brainwave", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/brainwave/", - "description": "Brainwave" - }, - { - "id": "th_namari", - "name": "Namari", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/namari", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/namari/", - "description": "Namari" - }, - { - "id": "th_occupy", - "name": "Occupy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/occupy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/occupy/", - "description": "Occupy" - }, - { - "id": "th_consulto", - "name": "Consulto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/consulto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/consulto/", - "description": "Consulto" - }, - { - "id": "th_initio", - "name": "Initio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Initio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Initio/", - "description": "Initio" - }, - { - "id": "th_ararat", - "name": "Ararat", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ararat", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ararat/", - "description": "Ararat" - }, - { - "id": "th_quest", - "name": "Quest", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/quest", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/quest/", - "description": "Quest" - }, - { - "id": "th_fitnezz", - "name": "Fitnezz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fitnezz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fitnezz/", - "description": "Fitnezz" - }, - { - "id": "th_pivot", - "name": "Pivot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pivot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pivot/", - "description": "Pivot" - }, - { - "id": "th_spectral", - "name": "Spectral", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/spectral", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/spectral/", - "description": "Spectral" - }, - { - "id": "th_digilab", - "name": "Digilab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/digilab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/digilab/", - "description": "Digilab" - }, - { - "id": "th_bee", - "name": "Bee", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bee", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bee/", - "description": "Bee" - }, - { - "id": "th_juli", - "name": "Juli", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/juli", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/juli/", - "description": "Juli" - }, - { - "id": "th_hus", - "name": "Hus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hus/", - "description": "Hus" - }, - { - "id": "th_luxury", - "name": "Luxury", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Luxury", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Luxury/", - "description": "Luxury - An Elegant Responsive One Page Bootstrap Template " - }, - { - "id": "th_webiz", - "name": "Webiz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/webiz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/webiz/", - "description": "Webiz" - }, - { - "id": "th_city_real_estate", - "name": "City Real Estate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/city-real-estate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/city-real-estate/", - "description": "City Real Estate" - }, - { - "id": "th_dream_pulse", - "name": "Dream Pulse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dream-pulse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dream-pulse/", - "description": "Dream Pulse" - }, - { - "id": "th_create", - "name": "Create", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/create", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/create/", - "description": "Create" - }, - { - "id": "th_yaseen", - "name": "Yaseen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yaseen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yaseen/", - "description": "Yaseen" - }, - { - "id": "th_confer", - "name": "Confer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/confer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/confer/", - "description": "Confer" - }, - { - "id": "th_kd", - "name": "Kd", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kd", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kd/", - "description": "Kd" - }, - { - "id": "th_doni", - "name": "Doni", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/doni", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/doni/", - "description": "Doni" - }, - { - "id": "th_mical", - "name": "Mical", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mical", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mical/", - "description": "Mical" - }, - { - "id": "th_credo", - "name": "Credo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/credo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/credo/", - "description": "Credo" - }, - { - "id": "th_burnout", - "name": "Burnout", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/burnout", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/burnout/", - "description": "Burnout" - }, - { - "id": "th_neat", - "name": "Neat", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/neat", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/neat/", - "description": "Neat" - }, - { - "id": "th_razor", - "name": "Razor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/razor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/razor/", - "description": "Razor" - }, - { - "id": "th_bloscot", - "name": "Bloscot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bloscot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bloscot/", - "description": "Bloscot" - }, - { - "id": "th_brighton", - "name": "Brighton", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/brighton", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/brighton/", - "description": "Brighton" - }, - { - "id": "th_medisen", - "name": "Medisen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/medisen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/medisen/", - "description": "Medisen" - }, - { - "id": "th_lattes", - "name": "Lattes", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lattes", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lattes/", - "description": "Lattes" - }, - { - "id": "th_stuff", - "name": "Stuff", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/stuff", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/stuff/", - "description": "Stuff" - }, - { - "id": "th_diffuso", - "name": "Diffuso", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/diffuso", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/diffuso/", - "description": "Diffuso" - }, - { - "id": "th_solution", - "name": "Solution", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/solution", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/solution/", - "description": "Solution" - }, - { - "id": "th_industrial", - "name": "Industrial", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/industrial", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/industrial/", - "description": "Industrial" - }, - { - "id": "th_lifeleck", - "name": "Lifeleck", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lifeleck", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lifeleck/", - "description": "Lifeleck" - }, - { - "id": "th_proshoot", - "name": "Proshoot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/proshoot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/proshoot/", - "description": "Proshoot" - }, - { - "id": "th_fastes", - "name": "Fastes", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fastes", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fastes/", - "description": "Fastes" - }, - { - "id": "th_foste", - "name": "Foste", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foste", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foste/", - "description": "Foste" - }, - { - "id": "th_imagine", - "name": "Imagine", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/imagine", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/imagine/", - "description": "Imagine" - }, - { - "id": "th_mini_profile", - "name": "Mini Profile", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mini-profile", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mini-profile/", - "description": "Mini Profile" - }, - { - "id": "th_bell", - "name": "Bell", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bell", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bell/", - "description": "Bell" - }, - { - "id": "th_convid", - "name": "Convid", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/convid", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/convid/", - "description": "Convid" - }, - { - "id": "th_gazette", - "name": "Gazette", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gazette", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gazette/", - "description": "Gazette" - }, - { - "id": "th_real_estate", - "name": "Real Estate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/real-estate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/real-estate/", - "description": "Real Estate" - }, - { - "id": "th_pilates", - "name": "Pilates", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Pilates", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Pilates/", - "description": "Life Coach - A Responsive, One Page Coaching Website Template for Consultant, Coaches and Instructors " - }, - { - "id": "th_halen", - "name": "Halen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/halen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/halen/", - "description": "Halen" - }, - { - "id": "th_nexus", - "name": "Nexus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nexus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nexus/", - "description": "Nexus" - }, - { - "id": "th_fantasy", - "name": "Fantasy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fantasy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fantasy/", - "description": "Fantasy" - }, - { - "id": "th_funder", - "name": "Funder", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/funder", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/funder/", - "description": "Funder" - }, - { - "id": "th_heaven", - "name": "Heaven", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/heaven", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/heaven/", - "description": "Heaven" - }, - { - "id": "th_bluesky", - "name": "Bluesky", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bluesky", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bluesky/", - "description": "Bluesky" - }, - { - "id": "th_me", - "name": "Me", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/me", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/me/", - "description": "Me" - }, - { - "id": "th_mighty", - "name": "Mighty", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mighty", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mighty/", - "description": "Mighty" - }, - { - "id": "th_crossfit_2", - "name": "Crossfit 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/crossfit-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/crossfit-2/", - "description": "Crossfit 2" - }, - { - "id": "th_bbs", - "name": "Bbs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bbs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bbs/", - "description": "Bbs" - }, - { - "id": "th_hostza", - "name": "Hostza", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hostza", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hostza/", - "description": "Hostza" - }, - { - "id": "th_safario", - "name": "Safario", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/safario", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/safario/", - "description": "Safario" - }, - { - "id": "th_maxibiz", - "name": "Maxibiz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/maxibiz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/maxibiz/", - "description": "Maxibiz" - }, - { - "id": "th_minimis", - "name": "Minimis", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/minimis", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/minimis/", - "description": "Minimis" - }, - { - "id": "th_dolphin", - "name": "Dolphin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dolphin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dolphin/", - "description": "Dolphin" - }, - { - "id": "th_karmo", - "name": "Karmo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/karmo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/karmo/", - "description": "Karmo" - }, - { - "id": "th_softy_pinko", - "name": "Softy Pinko", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/softy-pinko", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/softy-pinko/", - "description": "Softy Pinko" - }, - { - "id": "th_notary", - "name": "Notary", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/notary", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/notary/", - "description": "Notary" - }, - { - "id": "th_foto", - "name": "Foto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/foto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/foto/", - "description": "Foto" - }, - { - "id": "th_cellon", - "name": "Cellon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cellon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cellon/", - "description": "Cellon" - }, - { - "id": "th_crafted", - "name": "Crafted", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/crafted", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/crafted/", - "description": "Crafted" - }, - { - "id": "th_diggo", - "name": "Diggo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/diggo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/diggo/", - "description": "Diggo" - }, - { - "id": "th_nickie", - "name": "Nickie", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nickie", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nickie/", - "description": "Nickie" - }, - { - "id": "th_jumper", - "name": "Jumper", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jumper", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jumper/", - "description": "Jumper" - }, - { - "id": "th_glint2", - "name": "Glint2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/glint2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/glint2/", - "description": "Glint2" - }, - { - "id": "th_wordify", - "name": "Wordify", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wordify", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wordify/", - "description": "Wordify" - }, - { - "id": "th_blk_design_system", - "name": "Blk Design System", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/blk-design-system", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/blk-design-system/", - "description": "Blk Design System" - }, - { - "id": "th_like", - "name": "Like", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/like", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/like/", - "description": "Like" - }, - { - "id": "th_ionize", - "name": "Ionize", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ionize", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ionize/", - "description": "Ionize" - }, - { - "id": "th_meditative", - "name": "Meditative", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/meditative", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/meditative/", - "description": "Meditative" - }, - { - "id": "th_archi", - "name": "Archi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/archi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/archi/", - "description": "Archi" - }, - { - "id": "th_remake", - "name": "Remake", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/remake", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/remake/", - "description": "Remake" - }, - { - "id": "th_revive", - "name": "Revive", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/revive", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/revive/", - "description": "Revive" - }, - { - "id": "th_dreams_2", - "name": "Dreams 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dreams-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dreams-2/", - "description": "Dreams 2" - }, - { - "id": "th_new_age", - "name": "New Age", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/new-age", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/new-age/", - "description": "New Age" - }, - { - "id": "th_dazzle", - "name": "Dazzle", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dazzle", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dazzle/", - "description": "Dazzle" - }, - { - "id": "th_insertion", - "name": "Insertion", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/insertion", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/insertion/", - "description": "Insertion" - }, - { - "id": "th_hola", - "name": "Hola", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hola", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hola/", - "description": "Hola" - }, - { - "id": "th_clickaholic", - "name": "Clickaholic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/clickaholic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/clickaholic/", - "description": "Clickaholic" - }, - { - "id": "th_itsy", - "name": "Itsy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/itsy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/itsy/", - "description": "Itsy" - }, - { - "id": "th_pro_line", - "name": "Pro Line", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pro-line", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pro-line/", - "description": "Pro Line" - }, - { - "id": "th_elegance", - "name": "Elegance", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elegance", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elegance/", - "description": "Elegance" - }, - { - "id": "th_marga", - "name": "Marga", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/marga", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/marga/", - "description": "Marga" - }, - { - "id": "th_handyman", - "name": "Handyman", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/handyman", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/handyman/", - "description": "Handyman" - }, - { - "id": "th_precon", - "name": "Precon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/precon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/precon/", - "description": "Precon" - }, - { - "id": "th_intot", - "name": "Intot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/intot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/intot/", - "description": "Intot" - }, - { - "id": "th_racks", - "name": "Racks", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/racks", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/racks/", - "description": "Racks" - }, - { - "id": "th_buildex", - "name": "Buildex", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/buildex", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/buildex/", - "description": "Buildex" - }, - { - "id": "th_monday", - "name": "Monday", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/monday", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/monday/", - "description": "Monday" - }, - { - "id": "th_expert", - "name": "Expert", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/expert", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/expert/", - "description": "Expert" - }, - { - "id": "th_jimmy", - "name": "Jimmy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jimmy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jimmy/", - "description": "Jimmy" - }, - { - "id": "th_jd_1", - "name": "Jd 1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jd-1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jd-1/", - "description": "Jd 1" - }, - { - "id": "th_cocoon", - "name": "Cocoon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cocoon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cocoon/", - "description": "Cocoon" - }, - { - "id": "th_bato", - "name": "Bato", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bato", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bato/", - "description": "Bato" - }, - { - "id": "th_oak", - "name": "Oak", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/oak", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/oak/", - "description": "Oak" - }, - { - "id": "th_meal", - "name": "Meal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/meal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/meal/", - "description": "Meal" - }, - { - "id": "th_pixel", - "name": "Pixel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pixel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pixel/", - "description": "Pixel" - }, - { - "id": "th_feast", - "name": "Feast", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/feast", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/feast/", - "description": "Feast" - }, - { - "id": "th_kreative", - "name": "Kreative", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/kreative", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/kreative/", - "description": "Kreative" - }, - { - "id": "th_standout", - "name": "Standout", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/standout", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/standout/", - "description": "Standout" - }, - { - "id": "th_art_factory", - "name": "Art Factory", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/art-factory", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/art-factory/", - "description": "Art Factory" - }, - { - "id": "th_dizzi", - "name": "Dizzi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dizzi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dizzi/", - "description": "Dizzi" - }, - { - "id": "th_oneder", - "name": "Oneder", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/oneder", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/oneder/", - "description": "Oneder" - }, - { - "id": "th_meghna", - "name": "Meghna", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/meghna", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/meghna/", - "description": "Meghna" - }, - { - "id": "th_lorahost", - "name": "Lorahost", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lorahost", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lorahost/", - "description": "Lorahost" - }, - { - "id": "th_vanilla", - "name": "Vanilla", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vanilla", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vanilla/", - "description": "Vanilla" - }, - { - "id": "th_plataforma", - "name": "Plataforma", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/plataforma", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/plataforma/", - "description": "Plataforma" - }, - { - "id": "th_podcast", - "name": "Podcast", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/podcast", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/podcast/", - "description": "Podcast" - }, - { - "id": "th_argon", - "name": "Argon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/argon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/argon/", - "description": "Argon" - }, - { - "id": "th_consula", - "name": "Consula", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/consula", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/consula/", - "description": "Consula" - }, - { - "id": "th_magnum", - "name": "Magnum", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/magnum", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/magnum/", - "description": "Magnum" - }, - { - "id": "th_amplify", - "name": "Amplify", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/amplify", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/amplify/", - "description": "Amplify" - }, - { - "id": "th_ostacor", - "name": "Ostacor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Ostacor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Ostacor/", - "description": "Ostacor" - }, - { - "id": "th_shahala", - "name": "Shahala", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/shahala", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/shahala/", - "description": "Shahala" - }, - { - "id": "th_cruise", - "name": "Cruise", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cruise", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cruise/", - "description": "Cruise" - }, - { - "id": "th_lazy_kit", - "name": "Lazy Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lazy-kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lazy-kit/", - "description": "Lazy Kit" - }, - { - "id": "th_unearth", - "name": "Unearth", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/unearth", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/unearth/", - "description": "Unearth" - }, - { - "id": "th_pro", - "name": "Pro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pro/", - "description": "Pro" - }, - { - "id": "th_comply", - "name": "Comply", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/comply", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/comply/", - "description": "Comply" - }, - { - "id": "th_bigwing", - "name": "Bigwing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bigwing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bigwing/", - "description": "Bigwing" - }, - { - "id": "th_metal", - "name": "Metal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/metal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/metal/", - "description": "Metal" - }, - { - "id": "th_moon", - "name": "Moon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/moon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/moon/", - "description": "Moon" - }, - { - "id": "th_mosh", - "name": "Mosh", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mosh", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mosh/", - "description": "Mosh" - }, - { - "id": "th_solid_state", - "name": "Solid State", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Solid-State", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Solid-State/", - "description": "Solid State" - }, - { - "id": "th_interact", - "name": "Interact", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/interact", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/interact/", - "description": "Interact" - }, - { - "id": "th_ghughu", - "name": "Ghughu", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ghughu", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ghughu/", - "description": "Ghughu" - }, - { - "id": "th_adalot", - "name": "Adalot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/adalot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/adalot/", - "description": "Adalot" - }, - { - "id": "th_green_special", - "name": "Green Special", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/green-special", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/green-special/", - "description": "Green Special" - }, - { - "id": "th_buri", - "name": "Buri", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/buri", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/buri/", - "description": "Buri" - }, - { - "id": "th_rapoo", - "name": "Rapoo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rapoo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rapoo/", - "description": "Rapoo" - }, - { - "id": "th_neutral", - "name": "Neutral", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/neutral", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/neutral/", - "description": "Neutral" - }, - { - "id": "th_lander", - "name": "Lander", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lander", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lander/", - "description": "Lander" - }, - { - "id": "th_read_only", - "name": "Read Only", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/read-only", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/read-only/", - "description": "Read Only" - }, - { - "id": "th_trave", - "name": "Trave", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trave", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trave/", - "description": "Trave" - }, - { - "id": "th_magazee", - "name": "Magazee", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/magazee", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/magazee/", - "description": "Magazee" - }, - { - "id": "th_ubutia", - "name": "Ubutia", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ubutia", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ubutia/", - "description": "free bootstrap template" - }, - { - "id": "th_nissa", - "name": "Nissa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nissa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nissa/", - "description": "Nissa" - }, - { - "id": "th_parallo", - "name": "Parallo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/parallo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/parallo/", - "description": "Parallo" - }, - { - "id": "th_armando", - "name": "Armando", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/armando", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/armando/", - "description": "Armando" - }, - { - "id": "th_next", - "name": "Next", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/next", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/next/", - "description": "Next" - }, - { - "id": "th_erase", - "name": "Erase", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/erase", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/erase/", - "description": "Erase" - }, - { - "id": "th_pixel_lite", - "name": "Pixel Lite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pixel-lite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pixel-lite/", - "description": "Pixel Lite" - }, - { - "id": "th_ethan", - "name": "Ethan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ethan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ethan/", - "description": "Ethan" - }, - { - "id": "th_judicial", - "name": "Judicial", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/judicial", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/judicial/", - "description": "Judicial" - }, - { - "id": "th_slides", - "name": "Slides", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/slides", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/slides/", - "description": "Slides" - }, - { - "id": "th_equip", - "name": "Equip", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/equip", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/equip/", - "description": "Equip" - }, - { - "id": "th_noxen", - "name": "Noxen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/noxen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/noxen/", - "description": "Noxen" - }, - { - "id": "th_vira", - "name": "Vira", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vira", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vira/", - "description": "Vira" - }, - { - "id": "th_dot", - "name": "Dot", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dot", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dot/", - "description": "Dot" - }, - { - "id": "th_trekking", - "name": "Trekking", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trekking", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trekking/", - "description": "Trekking" - }, - { - "id": "th_bizzy", - "name": "Bizzy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bizzy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bizzy/", - "description": "Bizzy" - }, - { - "id": "th_ideal", - "name": "Ideal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ideal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ideal/", - "description": "Ideal" - }, - { - "id": "th_opium", - "name": "Opium", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/opium", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/opium/", - "description": "Opium" - }, - { - "id": "th_character", - "name": "Character", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/character", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/character/", - "description": "Character" - }, - { - "id": "th_wrapk", - "name": "Wrapk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wrapk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wrapk/", - "description": "Wrapk" - }, - { - "id": "th_landerz", - "name": "Landerz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/landerz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/landerz/", - "description": "Landerz" - }, - { - "id": "th_twenty", - "name": "Twenty", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/twenty", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/twenty/", - "description": "Twenty" - }, - { - "id": "th_browser", - "name": "Browser", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/browser", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/browser/", - "description": "Browser" - }, - { - "id": "th_paper_kit", - "name": "Paper Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/paper-kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/paper-kit/", - "description": "Paper Kit is a Fully Coded Web UI Kit based on Bootstrap 3" - }, - { - "id": "th_dup", - "name": "Dup", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dup", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dup/", - "description": "Dup" - }, - { - "id": "th_outdoors", - "name": "Outdoors", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Outdoors", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Outdoors/", - "description": "An implementation of Gil Huybrecht “Outdoors” design project powered by layered CSS grids." - }, - { - "id": "th_material_kit", - "name": "Material Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-kit/", - "description": "Material Kit" - }, - { - "id": "th_ignite", - "name": "Ignite", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ignite", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ignite/", - "description": "Ignite" - }, - { - "id": "th_avana", - "name": "Avana", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/avana", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/avana/", - "description": "Avana" - }, - { - "id": "th_jeren", - "name": "Jeren", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jeren", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jeren/", - "description": "Jeren" - }, - { - "id": "th_element", - "name": "Element", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/element", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/element/", - "description": "Element" - }, - { - "id": "th_maze", - "name": "Maze", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/maze", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/maze/", - "description": "Maze" - }, - { - "id": "th_alstar", - "name": "Alstar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/alstar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/alstar/", - "description": "Alstar is a free parallax Bootstrap one page template with enormous features." - }, - { - "id": "th_elisa_template_demo", - "name": "Elisa Template Demo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elisa-template-demo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elisa-template-demo/", - "description": "Demo for Elisa Bootstrap Template" - }, - { - "id": "th_wired_ui_kit", - "name": "Wired Ui Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wired_ui_kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wired_ui_kit/", - "description": "Wired Ui Kit" - }, - { - "id": "th_mind_craft", - "name": "Mind Craft", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Mind-Craft", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Mind-Craft/", - "description": "Mind Craft" - }, - { - "id": "th_clemo", - "name": "Clemo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/clemo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/clemo/", - "description": "Clemo" - }, - { - "id": "th_aavas", - "name": "Aavas", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aavas", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aavas/", - "description": "Aavas" - }, - { - "id": "th_fun_weather", - "name": "Fun Weather", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fun-weather", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fun-weather/", - "description": "Fun Weather" - }, - { - "id": "th_goind", - "name": "Goind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/goind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/goind/", - "description": "Goind" - }, - { - "id": "th_platina", - "name": "Platina", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/platina", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/platina/", - "description": "Platina" - }, - { - "id": "th_sided", - "name": "Sided", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sided", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sided/", - "description": "Sided" - }, - { - "id": "th_fplus", - "name": "Fplus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fplus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fplus/", - "description": "Fplus" - }, - { - "id": "th_copa", - "name": "Copa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/copa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/copa/", - "description": "Copa" - }, - { - "id": "th_thetown", - "name": "Thetown", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/thetown", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/thetown/", - "description": "Thetown" - }, - { - "id": "th_ubeasa", - "name": "Ubeasa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ubeasa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ubeasa/", - "description": "free html5 template" - }, - { - "id": "th_dinomuz", - "name": "Dinomuz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dinomuz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dinomuz/", - "description": "Dinomuz" - }, - { - "id": "th_charcoal", - "name": "Charcoal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/charcoal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/charcoal/", - "description": "Charcoal" - }, - { - "id": "th_marco_2", - "name": "Marco 2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/marco-2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/marco-2/", - "description": "Marco 2" - }, - { - "id": "th_regen_ui_kit", - "name": "Regen Ui Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/regen-ui-kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/regen-ui-kit/", - "description": "Regen Ui Kit" - }, - { - "id": "th_katt", - "name": "Katt", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/katt", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/katt/", - "description": "Katt" - }, - { - "id": "th_hexa", - "name": "Hexa", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hexa", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hexa/", - "description": "Hexa" - }, - { - "id": "th_diner", - "name": "Diner", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/diner", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/diner/", - "description": "Diner" - }, - { - "id": "th_five_star", - "name": "Five Star", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/five-star", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/five-star/", - "description": "Five Star" - }, - { - "id": "th_arcwork", - "name": "Arcwork", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/arcwork", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/arcwork/", - "description": "Arcwork" - }, - { - "id": "th_innova", - "name": "Innova", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/innova", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/innova/", - "description": "Innova" - }, - { - "id": "th_next_level", - "name": "Next Level", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/next-level", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/next-level/", - "description": "Next Level" - }, - { - "id": "th_lambda", - "name": "Lambda", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lambda", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lambda/", - "description": "Lambda" - }, - { - "id": "th_loaft", - "name": "Loaft", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/loaft", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/loaft/", - "description": "Loaft" - }, - { - "id": "th_ronald", - "name": "Ronald", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ronald", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ronald/", - "description": "Ronald" - }, - { - "id": "th_tangre", - "name": "Tangre", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tangre", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tangre/", - "description": "Tangre" - }, - { - "id": "th_jaine", - "name": "Jaine", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jaine", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jaine/", - "description": "Jaine" - }, - { - "id": "th_elements", - "name": "Elements", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elements", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elements/", - "description": "Elements" - }, - { - "id": "th_jd", - "name": "Jd", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/jd", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/jd/", - "description": "Jd" - }, - { - "id": "th_promodise", - "name": "Promodise", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/promodise", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/promodise/", - "description": "Promodise" - }, - { - "id": "th_ramayana", - "name": "Ramayana", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ramayana", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ramayana/", - "description": "Ramayana" - }, - { - "id": "th_flamix", - "name": "Flamix", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/flamix", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/flamix/", - "description": "Flamix" - }, - { - "id": "th_hikers", - "name": "Hikers", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hikers", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hikers/", - "description": "Hikers" - }, - { - "id": "th_holmes", - "name": "Holmes", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/holmes", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/holmes/", - "description": "Holmes" - }, - { - "id": "th_fancy", - "name": "Fancy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fancy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fancy/", - "description": "Fancy" - }, - { - "id": "th_bravo", - "name": "Bravo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bravo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bravo/", - "description": "Bravo" - }, - { - "id": "th_synthetica", - "name": "Synthetica", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/synthetica", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/synthetica/", - "description": "Synthetica" - }, - { - "id": "th_trendy", - "name": "Trendy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trendy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trendy/", - "description": "Trendy" - }, - { - "id": "th_accent", - "name": "Accent", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/accent", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/accent/", - "description": "Accent" - }, - { - "id": "th_ultim8", - "name": "Ultim8", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ultim8", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ultim8/", - "description": "Ultim8" - }, - { - "id": "th_sun", - "name": "Sun", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sun", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sun/", - "description": "Sun" - }, - { - "id": "th_patros", - "name": "Patros", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/patros", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/patros/", - "description": "Patros" - }, - { - "id": "th_story", - "name": "Story", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/story", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/story/", - "description": "Story" - }, - { - "id": "th_vlava", - "name": "Vlava", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vlava", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vlava/", - "description": "Vlava" - }, - { - "id": "th_mortize", - "name": "Mortize", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mortize", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mortize/", - "description": "Mortize" - }, - { - "id": "th_iconic", - "name": "Iconic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/iconic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/iconic/", - "description": "Iconic" - }, - { - "id": "th_evie1", - "name": "Evie1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/evie1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/evie1/", - "description": "Evie1" - }, - { - "id": "th_negotiate", - "name": "Negotiate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/negotiate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/negotiate/", - "description": "Negotiate" - }, - { - "id": "th_casinal", - "name": "Casinal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Casinal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Casinal/", - "description": "Free website template" - }, - { - "id": "th_capiclean", - "name": "Capiclean", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Capiclean", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Capiclean/", - "description": "Free responsive website template" - }, - { - "id": "th_meyawo", - "name": "Meyawo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/meyawo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/meyawo/", - "description": "Free CSS Template" - }, - { - "id": "th_klar", - "name": "Klar", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/klar", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/klar/", - "description": "Free Responsive HTML Template" - }, - { - "id": "th_revolve", - "name": "Revolve", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/revolve", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/revolve/", - "description": "Free Bootstrap Template" - }, - { - "id": "th_clickr", - "name": "Clickr", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/clickr", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/clickr/", - "description": "Clickr" - }, - { - "id": "th_ioniq", - "name": "Ioniq", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ioniq", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ioniq/", - "description": "Ioniq" - }, - { - "id": "th_risotto", - "name": "Risotto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/risotto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/risotto/", - "description": "Risotto" - }, - { - "id": "th_ca", - "name": "Ca", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/CA", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/CA/", - "description": "Ca" - }, - { - "id": "th_roundy", - "name": "Roundy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/roundy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/roundy/", - "description": "Roundy" - }, - { - "id": "th_landwind", - "name": "Landwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/landwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/landwind/", - "description": "Landwind" - }, - { - "id": "th_farmfresh", - "name": "Farmfresh", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/farmfresh", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/farmfresh/", - "description": "Farmfresh" - }, - { - "id": "th_kindheart", - "name": "Kindheart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/KindHeart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/KindHeart/", - "description": "Kindheart" - }, - { - "id": "th_archiark", - "name": "Archiark", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/archiark", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/archiark/", - "description": "Archiark" - }, - { - "id": "th_podtalk", - "name": "Podtalk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/PodTalk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/PodTalk/", - "description": "Podtalk" - }, - { - "id": "th_festavalive", - "name": "Festavalive", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/FestavaLive", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/FestavaLive/", - "description": "Festavalive" - }, - { - "id": "th_multiverse", - "name": "Multiverse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/multiverse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/multiverse/", - "description": "Multiverse" - }, - { - "id": "th_feane", - "name": "Feane", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/feane", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/feane/", - "description": "Feane" - }, - { - "id": "th_growmark", - "name": "Growmark", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/GrowMark", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/GrowMark/", - "description": "Growmark" - }, - { - "id": "th_cycle", - "name": "Cycle", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Cycle", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Cycle/", - "description": "Cycle" - }, - { - "id": "th_teab", - "name": "Teab", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/teab", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/teab/", - "description": "Teab" - }, - { - "id": "th_swipol", - "name": "Swipol", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/SwiPol", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/SwiPol/", - "description": "Swipol" - }, - { - "id": "th_nico", - "name": "Nico", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nico", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nico/", - "description": "Nico" - }, - { - "id": "th_nimo", - "name": "Nimo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Nimo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Nimo/", - "description": "Nimo" - }, - { - "id": "th_tnio", - "name": "Tnio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tnio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tnio/", - "description": "Tnio" - }, - { - "id": "th_birdor", - "name": "Birdor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Birdor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Birdor/", - "description": "Birdor" - }, - { - "id": "th_transit", - "name": "Transit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/transit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/transit/", - "description": "Transit" - }, - { - "id": "th_painto", - "name": "Painto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Painto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Painto/", - "description": "Painto" - }, - { - "id": "th_moto", - "name": "Moto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Moto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Moto/", - "description": "Moto" - }, - { - "id": "th_rea", - "name": "Rea", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/rea", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/rea/", - "description": "Rea" - }, - { - "id": "th_crptiam", - "name": "Crptiam", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Crptiam", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Crptiam/", - "description": "Crptiam" - }, - { - "id": "th_growing", - "name": "Growing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/growing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/growing/", - "description": "Growing" - }, - { - "id": "th_gariox", - "name": "Gariox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gariox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gariox/", - "description": "Gariox" - }, - { - "id": "th_talenttalk", - "name": "Talenttalk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/TalentTalk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/TalentTalk/", - "description": "Talenttalk" - }, - { - "id": "th_dashui", - "name": "Dashui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/DashUI", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/DashUI/", - "description": "Dashui" - }, - { - "id": "th_maxwell", - "name": "Maxwell", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/maxwell", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/maxwell/", - "description": "Maxwell" - }, - { - "id": "th_trator", - "name": "Trator", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/trator", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/trator/", - "description": "Trator" - }, - { - "id": "th_snapx", - "name": "Snapx", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/snapx", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/snapx/", - "description": "Snapx" - }, - { - "id": "th_mexant", - "name": "Mexant", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mexant", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mexant/", - "description": "Mexant" - }, - { - "id": "th_pinwheel", - "name": "Pinwheel", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pinwheel", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pinwheel/", - "description": "Pinwheel" - }, - { - "id": "th_topiclisting", - "name": "Topiclisting", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/TopicListing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/TopicListing/", - "description": "Topiclisting" - }, - { - "id": "th_ultras", - "name": "Ultras", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/ultras", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/ultras/", - "description": "Ultras" - }, - { - "id": "th_rent4u", - "name": "Rent4U", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Rent4u", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Rent4u/", - "description": "Rent4U" - }, - { - "id": "th_furnics", - "name": "Furnics", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/furnics", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/furnics/", - "description": "Furnics" - }, - { - "id": "th_swanky", - "name": "Swanky", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/swanky", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/swanky/", - "description": "Swanky" - }, - { - "id": "th_financing", - "name": "Financing", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/financing", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/financing/", - "description": "Financing" - }, - { - "id": "th_strategy", - "name": "Strategy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/strategy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/strategy/", - "description": "Strategy" - }, - { - "id": "th_invent", - "name": "Invent", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/invent", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/invent/", - "description": "Invent" - }, - { - "id": "th_vintagefur", - "name": "Vintagefur", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vintagefur", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vintagefur/", - "description": "Vintagefur" - }, - { - "id": "th_milina", - "name": "Milina", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/milina", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/milina/", - "description": "Milina" - }, - { - "id": "th_snap", - "name": "Snap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/snap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/snap/", - "description": "Snap" - }, - { - "id": "th_furni", - "name": "Furni", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/furni", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/furni/", - "description": "Furni" - }, - { - "id": "th_learner", - "name": "Learner", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/learner", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/learner/", - "description": "Learner" - }, - { - "id": "th_roofer", - "name": "Roofer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Roofer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Roofer/", - "description": "Roofer" - }, - { - "id": "th_labsky", - "name": "Labsky", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Labsky", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Labsky/", - "description": "Labsky" - }, - { - "id": "th_ai_html", - "name": "Ai Html", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/AI-html", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/AI-html/", - "description": "Ai Html" - }, - { - "id": "th_pestkit", - "name": "Pestkit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/PestKit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/PestKit/", - "description": "Pestkit" - }, - { - "id": "th_caterserv", - "name": "Caterserv", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/CaterServ", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/CaterServ/", - "description": "Caterserv" - }, - { - "id": "th_guarder", - "name": "Guarder", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/guarder", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/guarder/", - "description": "Guarder" - }, - { - "id": "th_edgecut", - "name": "Edgecut", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/EdgeCut", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/EdgeCut/", - "description": "Edgecut" - }, - { - "id": "th_esigned", - "name": "Esigned", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/esigned", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/esigned/", - "description": "Esigned" - }, - { - "id": "th_mr_mrs", - "name": "Mr Mrs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mr-mrs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mr-mrs/", - "description": "Mr Mrs" - }, - { - "id": "th_fruitables", - "name": "Fruitables", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/fruitables", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/fruitables/", - "description": "Fruitables" - }, - { - "id": "th_lighten", - "name": "Lighten", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/lighten", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/lighten/", - "description": "Lighten" - }, - { - "id": "th_monica", - "name": "Monica", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/monica", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/monica/", - "description": "Monica" - }, - { - "id": "th_augustine", - "name": "Augustine", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/augustine", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/augustine/", - "description": "Augustine" - }, - { - "id": "th_spurgeon", - "name": "Spurgeon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/spurgeon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/spurgeon/", - "description": "Spurgeon" - }, - { - "id": "th_wise", - "name": "Wise", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/wise", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/wise/", - "description": "Wise" - }, - { - "id": "th_roxo", - "name": "Roxo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/roxo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/roxo/", - "description": "Roxo" - }, - { - "id": "th_apollo", - "name": "Apollo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/apollo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/apollo/", - "description": "Apollo" - }, - { - "id": "th_mueller", - "name": "Mueller", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mueller", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mueller/", - "description": "Mueller" - }, - { - "id": "th_terapia", - "name": "Terapia", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/terapia", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/terapia/", - "description": "Terapia" - }, - { - "id": "th_aranyak", - "name": "Aranyak", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/aranyak", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/aranyak/", - "description": "Aranyak" - }, - { - "id": "th_brainwave_io", - "name": "Brainwave Io", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/brainwave-io", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/brainwave-io/", - "description": "Brainwave Io" - }, - { - "id": "th_uoni", - "name": "Uoni", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Uoni", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Uoni/", - "description": "Uoni" - }, - { - "id": "th_mantis", - "name": "Mantis", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mantis", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mantis/", - "description": "Mantis" - }, - { - "id": "th_environs", - "name": "Environs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/environs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/environs/", - "description": "Free Nature Website Template" - }, - { - "id": "th_mui_boilerplate", - "name": "Mui Boilerplate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/mui-boilerplate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/mui-boilerplate/", - "description": "Mui Boilerplate" - }, - { - "id": "th_motiv", - "name": "Motiv", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/motiv", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/motiv/", - "description": "Motiv" - }, - { - "id": "th_nextjs_material_kit", - "name": "Nextjs Material Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/NextJS-Material-Kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/NextJS-Material-Kit/", - "description": "Nextjs Material Kit" - }, - { - "id": "th_elegent", - "name": "Elegent", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/elegent", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/elegent/", - "description": "Elegent" - }, - { - "id": "th_slim_free_react_mui_template", - "name": "Slim Free React Mui Template", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/slim-free-react-mui-template", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/slim-free-react-mui-template/", - "description": "🚀⚡️Modern and clean react mui Template for easing and faster web development.💻" - }, - { - "id": "th_inception", - "name": "Inception", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/inception", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/inception/", - "description": "This project uses react to consume GitHub APIs and render some features. Its has authoral components, but uses MaterialUiReact components too" - }, - { - "id": "th_nickelfox", - "name": "Nickelfox", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nickelfox", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nickelfox/", - "description": "Nickelfox" - }, - { - "id": "th_bankdash", - "name": "Bankdash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bankdash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bankdash/", - "description": "Bankdash" - }, - { - "id": "th_dabang", - "name": "Dabang", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dabang", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dabang/", - "description": "Dabang" - }, - { - "id": "th_dnx", - "name": "Dnx", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dnx", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dnx/", - "description": "Dnx" - }, - { - "id": "th_accessories", - "name": " Accessories ", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/-Accessories-", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/-Accessories-/", - "description": "Free eCom Website Template" - }, - { - "id": "th_cental", - "name": "Cental", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Cental", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Cental/", - "description": "Cental" - }, - { - "id": "th_venus", - "name": "Venus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/venus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/venus/", - "description": "Venus" - }, - { - "id": "th_horizon", - "name": "Horizon", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/horizon", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/horizon/", - "description": "Horizon" - }, - { - "id": "th_minimal", - "name": "Minimal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/minimal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/minimal/", - "description": "Minimal" - }, - { - "id": "th_waggy", - "name": "Waggy", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/waggy", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/waggy/", - "description": "Free HTML eCom Website Template" - }, - { - "id": "th_amanda", - "name": "Amanda", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/amanda", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/amanda/", - "description": "Amanda" - }, - { - "id": "th_booth", - "name": "Booth", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Booth", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Booth/", - "description": "Booth" - }, - { - "id": "th_pensio", - "name": "Pensio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pensio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pensio/", - "description": "Free HTML Pricing Plan Template" - }, - { - "id": "th_luther", - "name": "Luther", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/luther", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/luther/", - "description": "Free Potfolio Website template" - }, - { - "id": "th_base", - "name": "Base", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/base", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/base/", - "description": "Base" - }, - { - "id": "th_freshen", - "name": "Freshen", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Freshen", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Freshen/", - "description": "Free Bootstrap 5 Laundry Website Template" - }, - { - "id": "th_medwin", - "name": "Medwin", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MedWin", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MedWin/", - "description": "Free Website Template" - }, - { - "id": "th_modol", - "name": "Modol", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/modol", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/modol/", - "description": "Modol" - }, - { - "id": "th_quickstart", - "name": "Quickstart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/QuickStart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/QuickStart/", - "description": "Free Bootstrap Website Template" - }, - { - "id": "th_agriculture", - "name": "Agriculture", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/AgriCulture", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/AgriCulture/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_spike_vue_free", - "name": "Spike Vue Free", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/spike-vue-free", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/spike-vue-free/", - "description": "Spike Vue Free" - }, - { - "id": "th_gp", - "name": "Gp", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/gp", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/gp/", - "description": "Free Bootstrap 5 Multipurpose Website Template" - }, - { - "id": "th_herobiz", - "name": "Herobiz", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/HeroBiz", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/HeroBiz/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_yummy_red", - "name": "Yummy Red", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/yummy-red", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/yummy-red/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_logis_new", - "name": "Logis New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/logis-new", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/logis-new/", - "description": "Free Bootstrap 5 Tranportation Website template" - }, - { - "id": "th_flexstart", - "name": "Flexstart", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/FlexStart", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/FlexStart/", - "description": "Free bootstrap 5 Website Template" - }, - { - "id": "th_kelly", - "name": "Kelly", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Kelly", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Kelly/", - "description": "Free Bootstrap 5 Website template" - }, - { - "id": "th_sailor", - "name": "Sailor", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Sailor", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Sailor/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_knightone", - "name": "Knightone", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/KnightOne", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/KnightOne/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_enno", - "name": "Enno", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/eNno", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/eNno/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_dewi", - "name": "Dewi", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Dewi", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Dewi/", - "description": "Free Bootstrap 5 Website Template" - }, - { - "id": "th_spike_nuxtjs_free", - "name": "Spike Nuxtjs Free", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/spike-nuxtjs-free", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/spike-nuxtjs-free/", - "description": "Spike Nuxtjs Free" - }, - { - "id": "th_prefix", - "name": "Prefix", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Prefix", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Prefix/", - "description": "Free eCom Website Template" - }, - { - "id": "th_materialpro_nextjs_free", - "name": "Materialpro Nextjs Free", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/materialpro-nextjs-free", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/materialpro-nextjs-free/", - "description": "https://themewagon.github.io/materialpro-nextjs-free/" - }, - { - "id": "th_chefs_kitchen_nextjs_free", - "name": "Chefs Kitchen Nextjs Free", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/chefs-kitchen-nextjs-free", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/chefs-kitchen-nextjs-free/", - "description": "Chefs Kitchen Nextjs Free" - }, - { - "id": "th_hielo", - "name": "Hielo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Hielo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Hielo/", - "description": "Hielo" - }, - { - "id": "th_berry_mui", - "name": "Berry Mui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Berry-MUI", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Berry-MUI/", - "description": "Berry Mui" - }, - { - "id": "th_intensify", - "name": "Intensify", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Intensify", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Intensify/", - "description": "Intensify" - }, - { - "id": "th_spike_bootstrap", - "name": "Spike Bootstrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Spike-Bootstrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Spike-Bootstrap/", - "description": "Spike Bootstrap" - }, - { - "id": "th_binary", - "name": "Binary", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Binary", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Binary/", - "description": "Free HTML5 & CSS3 Template" - }, - { - "id": "th_regal", - "name": "Regal", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/regal", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/regal/", - "description": "Regal" - }, - { - "id": "th_matdash", - "name": "Matdash", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/MatDash", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/MatDash/", - "description": "Matdash" - }, - { - "id": "th_modernize_mui", - "name": "Modernize Mui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Modernize-MUI", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Modernize-MUI/", - "description": "Modernize Mui" - }, - { - "id": "th_amoeba", - "name": "Amoeba", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/amoeba", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/amoeba/", - "description": "Amoeba" - }, - { - "id": "th_folio", - "name": "Folio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/folio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/folio/", - "description": "Folio" - }, - { - "id": "th_picto", - "name": "Picto", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/picto", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/picto/", - "description": "Developed by ThemeWagon" - }, - { - "id": "th_iridium", - "name": "Iridium", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Iridium", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Iridium/", - "description": "Iridium" - }, - { - "id": "th_materio", - "name": "Materio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/materio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/materio/", - "description": "Materio" - }, - { - "id": "th_phaseshift", - "name": "Phaseshift", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/PhaseShift", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/PhaseShift/", - "description": "Phaseshift" - }, - { - "id": "th_retrospect", - "name": "Retrospect", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Retrospect", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Retrospect/", - "description": "Retrospect" - }, - { - "id": "th_chefer", - "name": "Chefer", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Chefer", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Chefer/", - "description": "Chefer" - }, - { - "id": "th_koppee", - "name": "Koppee", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Koppee", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Koppee/", - "description": "Koppee" - }, - { - "id": "th_edukate", - "name": "Edukate", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Edukate", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Edukate/", - "description": "Edukate" - }, - { - "id": "th_broadcast", - "name": "Broadcast", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Broadcast", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Broadcast/", - "description": "Broadcast" - }, - { - "id": "th_velora", - "name": "Velora", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Velora", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Velora/", - "description": "Velora" - }, - { - "id": "th_weldork", - "name": "Weldork", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Weldork", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Weldork/", - "description": "Weldork" - }, - { - "id": "th_velora_vue", - "name": "Velora Vue", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Velora-vue", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Velora-vue/", - "description": "Velora Vue" - }, - { - "id": "th_spike_tailwind", - "name": "Spike Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/spike-tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/spike-tailwind/", - "description": "Spike Tailwind" - }, - { - "id": "th_dattaable", - "name": "Dattaable", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/DattaAble", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/DattaAble/", - "description": "Dattaable" - }, - { - "id": "th_tailwind_starter_kit", - "name": "Tailwind Starter Kit", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tailwind-starter-kit", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tailwind-starter-kit/", - "description": "Tailwind Starter Kit" - }, - { - "id": "th_crypgo", - "name": "Crypgo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Crypgo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Crypgo/", - "description": "Crypgo" - }, - { - "id": "th_nova_bootstrap", - "name": "Nova Bootstrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Nova-Bootstrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Nova-Bootstrap/", - "description": "Nova Bootstrap" - }, - { - "id": "th_netic", - "name": "Netic", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Netic", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Netic/", - "description": "Netic" - }, - { - "id": "th_oberlo", - "name": "Oberlo", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Oberlo", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Oberlo/", - "description": "Oberlo" - }, - { - "id": "th_lounge", - "name": "Lounge", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Lounge", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Lounge/", - "description": "Lounge" - }, - { - "id": "th_notus_react", - "name": "Notus React", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Notus-React", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Notus-React/", - "description": "Notus React" - }, - { - "id": "th_notus_next_js", - "name": "Notus Next.Js", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Notus-Next.js", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Notus-Next.js/", - "description": "Notus Next.Js" - }, - { - "id": "th_berry_vue", - "name": "Berry Vue", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/berry-vue", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/berry-vue/", - "description": "Berry Vue" - }, - { - "id": "th_mantis_vue", - "name": "Mantis Vue", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Mantis-Vue", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Mantis-Vue/", - "description": "Mantis Vue" - }, - { - "id": "th_electro_bootstrap", - "name": "Electro Bootstrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Electro-Bootstrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Electro-Bootstrap/", - "description": "Electro Bootstrap" - }, - { - "id": "th_windster", - "name": "Windster", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/windster", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/windster/", - "description": "Windster" - }, - { - "id": "th_nextly", - "name": "Nextly", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nextly", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nextly/", - "description": "Nextly" - }, - { - "id": "th_dasher_ui", - "name": "Dasher Ui", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dasher-ui", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dasher-ui/", - "description": "Dasher Ui" - }, - { - "id": "th_bundle_v2", - "name": "Bundle V2", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/bundle-v2", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/bundle-v2/", - "description": "Bundle V2" - }, - { - "id": "th_pulse_crm", - "name": "Pulse Crm", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/pulse-crm", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/pulse-crm/", - "description": "Pulse Crm" - }, - { - "id": "th_polk", - "name": "Polk", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Polk", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Polk/", - "description": "Polk" - }, - { - "id": "th_volt_bootstrap", - "name": "Volt Bootstrap", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/volt-Bootstrap", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/volt-Bootstrap/", - "description": "Volt Bootstrap" - }, - { - "id": "th_cryptoflow", - "name": "Cryptoflow", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cryptoflow", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cryptoflow/", - "description": "Cryptoflow" - }, - { - "id": "th_charitize", - "name": "Charitize", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Charitize", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Charitize/", - "description": "Charitize" - }, - { - "id": "th_hostpro", - "name": "Hostpro", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/hostpro", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/hostpro/", - "description": "Hostpro" - }, - { - "id": "th_avision", - "name": "Avision", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/avision", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/avision/", - "description": "Avision" - }, - { - "id": "th_base_tailwind", - "name": "Base Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Base-Tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Base-Tailwind/", - "description": "Base Tailwind" - }, - { - "id": "th_play_tailwind", - "name": "Play Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/play-tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/play-tailwind/", - "description": "Play Tailwind" - }, - { - "id": "th_faunaflora", - "name": "Faunaflora", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/FaunaFlora", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/FaunaFlora/", - "description": "Faunaflora" - }, - { - "id": "th_crypto_nextjs", - "name": "Crypto Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/crypto-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/crypto-nextjs/", - "description": "Crypto Nextjs" - }, - { - "id": "th_dsign", - "name": "Dsign", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dSign", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dSign/", - "description": "Dsign" - }, - { - "id": "th_bliss", - "name": "Bliss", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Bliss", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Bliss/", - "description": "Bliss" - }, - { - "id": "th_nova_bootstrap5_beta1", - "name": "Nova Bootstrap5 Beta1", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Nova-Bootstrap5_beta1", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Nova-Bootstrap5_beta1/", - "description": "Nova Bootstrap5 Beta1" - }, - { - "id": "th_flat", - "name": "Flat", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Flat", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Flat/", - "description": "Flat" - }, - { - "id": "th_venus_nextjs", - "name": "Venus Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/venus-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/venus-nextjs/", - "description": "Venus Free Next.js Website Template" - }, - { - "id": "th_plasery", - "name": "Plasery", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Plasery", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Plasery/", - "description": "Plasery" - }, - { - "id": "th_poseify", - "name": "Poseify", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Poseify", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Poseify/", - "description": "Poseify" - }, - { - "id": "th_sustainable_nextjs", - "name": "Sustainable Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/sustainable-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/sustainable-nextjs/", - "description": "Sustainable Nextjs" - }, - { - "id": "th_muvid", - "name": "Muvid", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Muvid", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Muvid/", - "description": "Muvid" - }, - { - "id": "th_advanced", - "name": "Advanced", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/advanced", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/advanced/", - "description": "Advanced" - }, - { - "id": "th_neutral_new", - "name": "Neutral New", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/neutral-new", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/neutral-new/", - "description": "Neutral New" - }, - { - "id": "th_symposium_nextjs", - "name": "Symposium Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/symposium-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/symposium-nextjs/", - "description": "symposium-nextjs" - }, - { - "id": "th_medinova", - "name": "Medinova", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Medinova", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Medinova/", - "description": "Medinova" - }, - { - "id": "th_pixelize", - "name": "Pixelize", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Pixelize", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Pixelize/", - "description": "Pixelize" - }, - { - "id": "th_geeky_nextjs", - "name": "Geeky Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/geeky-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/geeky-nextjs/", - "description": "Geeky Nextjs" - }, - { - "id": "th_quantam", - "name": "Quantam", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Quantam", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Quantam/", - "description": "Quantam" - }, - { - "id": "th_globalbank", - "name": "Globalbank", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/GlobalBank", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/GlobalBank/", - "description": "Globalbank" - }, - { - "id": "th_docsta", - "name": "Docsta", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/docsta", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/docsta/", - "description": "Docsta" - }, - { - "id": "th_typefolio", - "name": "Typefolio", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Typefolio", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Typefolio/", - "description": "Typefolio - NextJs Template" - }, - { - "id": "th_tiyagolfclub", - "name": "Tiyagolfclub", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/TiyaGolfClub", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/TiyaGolfClub/", - "description": "Tiyagolfclub" - }, - { - "id": "th_acidus", - "name": "Acidus", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/acidus", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/acidus/", - "description": "Initial commit" - }, - { - "id": "th_impulse", - "name": "Impulse", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/impulse", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/impulse/", - "description": "Impulse" - }, - { - "id": "th_dentista", - "name": "Dentista", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/dentista", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/dentista/", - "description": "Dentista" - }, - { - "id": "th_cleopatra_tailwind", - "name": "Cleopatra Tailwind", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/cleopatra-tailwind", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/cleopatra-tailwind/", - "description": "Cleopatra Tailwind" - }, - { - "id": "th_nextplate_nextjs", - "name": "Nextplate Nextjs", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/nextplate-nextjs", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/nextplate-nextjs/", - "description": "Nextplate - Nextjs Boilerplate" - }, - { - "id": "th_material_shadcn", - "name": "Material Shadcn", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/material-shadcn", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/material-shadcn/", - "description": "Material Shadcn" - }, - { - "id": "th_volcan", - "name": "Volcan", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Volcan", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Volcan/", - "description": "Volcan" - }, - { - "id": "th_atlas_v2_0_0", - "name": "Atlas V2.0.0", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/atlas-v2.0.0", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/atlas-v2.0.0/", - "description": "Atlas V2.0.0" - }, - { - "id": "th_atom", - "name": "Atom", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/atom", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/atom/", - "description": "Atom" - }, - { - "id": "th_agentix_html", - "name": "Agentix Html", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/Agentix-html", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/Agentix-html/", - "description": "Agentix Html" - }, - { - "id": "th_tailwind_bundle", - "name": "Tailwind Bundle", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/tailwind-bundle", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/tailwind-bundle/", - "description": "50 Tailwind CSS website templates" - }, - { - "id": "th_argon_design_system_angular", - "name": "Argon Design System Angular", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/argon-design-system-angular", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/argon-design-system-angular/", - "description": "Argon Design System Angular" - }, - { - "id": "th_block", - "name": "Block", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/block", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/block/", - "description": "Block – Tailwind CSS HTML Template Free" - }, - { - "id": "th_daiva", - "name": "Daiva", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/daiva", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/daiva/", - "description": "Daiva - 6 pages tailwind template" - }, - { - "id": "th_furnish", - "name": "Furnish", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/furnish", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/furnish/", - "description": "Furnish Free Bootstrap 5 Furniture Website Template" - }, - { - "id": "th_coach", - "name": "Coach", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/coach", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/coach/", - "description": "Coach" - }, - { - "id": "th_vaultedge", - "name": "Vaultedge", - "source": "themewagon", - "repo_url": "https://github.com/themewagon/vaultedge", - "sparse_path": ".", - "preview_url": "https://themewagon.github.io/vaultedge/", - "description": "VaultEdge – Financial & Loan Services Website Template" - }, - { - "id": "da_includes", - "name": " Includes", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "_includes", - "preview_url": "https://dawidolko.github.io/Website-Templates/_includes/", - "description": " Includes" - }, - { - "id": "da_layouts", - "name": " Layouts", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "_layouts", - "preview_url": "https://dawidolko.github.io/Website-Templates/_layouts/", - "description": " Layouts" - }, - { - "id": "da_ace_responsive_coming_soon_template", - "name": "Ace Responsive Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "ace-responsive-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/ace-responsive-coming-soon-template/", - "description": "Ace Responsive Coming Soon Template" - }, - { - "id": "da_aerosky_real_estate_html_responsive_website_template", - "name": "Aerosky Real Estate Html Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "aerosky-real-estate-html-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/aerosky-real-estate-html-responsive-website-template/", - "description": "Aerosky Real Estate Html Responsive Website Template" - }, - { - "id": "da_alive_responsive_coming_soon_template", - "name": "Alive Responsive Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "alive-responsive-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/alive-responsive-coming-soon-template/", - "description": "Alive Responsive Coming Soon Template" - }, - { - "id": "da_avenger_multi_purpose_responsive_html5_bootstrap_template", - "name": "Avenger Multi Purpose Responsive Html5 Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "avenger-multi-purpose-responsive-html5-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/avenger-multi-purpose-responsive-html5-bootstrap-template/", - "description": "Avenger Multi Purpose Responsive Html5 Bootstrap Template" - }, - { - "id": "da_basic_free_html5_template_for_multi_purpose", - "name": "Basic Free Html5 Template For Multi Purpose", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "basic-free-html5-template-for-multi-purpose", - "preview_url": "https://dawidolko.github.io/Website-Templates/basic-free-html5-template-for-multi-purpose/", - "description": "Basic Free Html5 Template For Multi Purpose" - }, - { - "id": "da_blazer_responsive_html5_coming_soon_template", - "name": "Blazer Responsive Html5 Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "blazer-responsive-html5-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/blazer-responsive-html5-coming-soon-template/", - "description": "Blazer Responsive Html5 Coming Soon Template" - }, - { - "id": "da_city_square_bootstrap_responsive_web_template", - "name": "City Square Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "city-square-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/city-square-bootstrap-responsive-web-template/", - "description": "City Square Bootstrap Responsive Web Template" - }, - { - "id": "da_coming_soon_responsive_theme_jack", - "name": "Coming Soon Responsive Theme Jack", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "coming-soon-responsive-theme-jack", - "preview_url": "https://dawidolko.github.io/Website-Templates/coming-soon-responsive-theme-jack/", - "description": "Coming Soon Responsive Theme Jack" - }, - { - "id": "da_css3_bw", - "name": "Css3 Bw", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "css3-bw", - "preview_url": "https://dawidolko.github.io/Website-Templates/css3-bw/", - "description": "Css3 Bw" - }, - { - "id": "da_css3_drop_shadows", - "name": "Css3 Drop Shadows", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "css3-drop-shadows", - "preview_url": "https://dawidolko.github.io/Website-Templates/css3-drop-shadows/", - "description": "Css3 Drop Shadows" - }, - { - "id": "da_css3_seascape_two", - "name": "Css3 Seascape Two", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "css3-seascape-two", - "preview_url": "https://dawidolko.github.io/Website-Templates/css3-seascape-two/", - "description": "Css3 Seascape Two" - }, - { - "id": "da_css3_seascape", - "name": "Css3 Seascape", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "css3-seascape", - "preview_url": "https://dawidolko.github.io/Website-Templates/css3-seascape/", - "description": "Css3 Seascape" - }, - { - "id": "da_delight_multi_purpose_free_html5_website_template", - "name": "Delight Multi Purpose Free Html5 Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "delight-multi-purpose-free-html5-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/delight-multi-purpose-free-html5-website-template/", - "description": "Delight Multi Purpose Free Html5 Website Template" - }, - { - "id": "da_dreamy", - "name": "Dreamy", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "dreamy", - "preview_url": "https://dawidolko.github.io/Website-Templates/dreamy/", - "description": "Dreamy" - }, - { - "id": "da_drifting", - "name": "Drifting", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "drifting", - "preview_url": "https://dawidolko.github.io/Website-Templates/drifting/", - "description": "Drifting" - }, - { - "id": "da_droll", - "name": "Droll", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "droll", - "preview_url": "https://dawidolko.github.io/Website-Templates/droll/", - "description": "Droll" - }, - { - "id": "da_elegant_free_multi_purpose_bootstrap_responsive_template", - "name": "Elegant Free Multi Purpose Bootstrap Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "elegant-free-multi-purpose-bootstrap-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/elegant-free-multi-purpose-bootstrap-responsive-template/", - "description": "Elegant Free Multi Purpose Bootstrap Responsive Template" - }, - { - "id": "da_endure_html5_responsive_coming_soon_template", - "name": "Endure Html5 Responsive Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "endure-html5-responsive-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/endure-html5-responsive-coming-soon-template/", - "description": "Endure Html5 Responsive Coming Soon Template" - }, - { - "id": "da_extent", - "name": "Extent", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "extent", - "preview_url": "https://dawidolko.github.io/Website-Templates/extent/", - "description": "Extent" - }, - { - "id": "da_free_bootstrap_template_for_multi_purpose_ladder", - "name": "Free Bootstrap Template For Multi Purpose Ladder", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "free-bootstrap-template-for-multi-purpose-ladder", - "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-for-multi-purpose-ladder/", - "description": "Free Bootstrap Template For Multi Purpose Ladder" - }, - { - "id": "da_free_bootstrap_template_real_estate_my_home", - "name": "Free Bootstrap Template Real Estate My Home", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "free-bootstrap-template-real-estate-my-home", - "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-real-estate-my-home/", - "description": "Free Bootstrap Template Real Estate My Home" - }, - { - "id": "da_full_slider", - "name": "Full Slider", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "full-slider", - "preview_url": "https://dawidolko.github.io/Website-Templates/full-slider/", - "description": "Full Slider" - }, - { - "id": "da_funky_cool_blue", - "name": "Funky Cool Blue", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "funky-cool-blue", - "preview_url": "https://dawidolko.github.io/Website-Templates/funky-cool-blue/", - "description": "Funky Cool Blue" - }, - { - "id": "da_gila", - "name": "Gila", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "gila", - "preview_url": "https://dawidolko.github.io/Website-Templates/gila/", - "description": "Gila" - }, - { - "id": "da_glips_responsive_free_coming_soon_bootstrap_template", - "name": "Glips Responsive Free Coming Soon Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "glips-responsive-free-coming-soon-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/glips-responsive-free-coming-soon-bootstrap-template/", - "description": "Glips Responsive Free Coming Soon Bootstrap Template" - }, - { - "id": "da_grand_free_bootstrap_responsive_website_template", - "name": "Grand Free Bootstrap Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "grand-free-bootstrap-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/grand-free-bootstrap-responsive-website-template/", - "description": "Grand Free Bootstrap Responsive Website Template" - }, - { - "id": "da_grandure_bootstrap_free_coming_soon_template", - "name": "Grandure Bootstrap Free Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "grandure-bootstrap-free-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/grandure-bootstrap-free-coming-soon-template/", - "description": "Grandure Bootstrap Free Coming Soon Template" - }, - { - "id": "da_grass_stains", - "name": "Grass Stains", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "grass-stains", - "preview_url": "https://dawidolko.github.io/Website-Templates/grass-stains/", - "description": "Grass Stains" - }, - { - "id": "da_green_corp_flat_free_responsive_mobile_website", - "name": "Green Corp Flat Free Responsive Mobile Website", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "green-corp-flat-free-responsive-mobile-website", - "preview_url": "https://dawidolko.github.io/Website-Templates/green-corp-flat-free-responsive-mobile-website/", - "description": "Green Corp Flat Free Responsive Mobile Website" - }, - { - "id": "da_greenery", - "name": "Greenery", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "greenery", - "preview_url": "https://dawidolko.github.io/Website-Templates/greenery/", - "description": "Greenery" - }, - { - "id": "da_gunmetal_portal", - "name": "Gunmetal Portal", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "gunmetal-portal", - "preview_url": "https://dawidolko.github.io/Website-Templates/gunmetal-portal/", - "description": "Gunmetal Portal" - }, - { - "id": "da_half_slider", - "name": "Half Slider", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "half-slider", - "preview_url": "https://dawidolko.github.io/Website-Templates/half-slider/", - "description": "Half Slider" - }, - { - "id": "da_html5_responsive_coming_soon_page", - "name": "Html5 Responsive Coming Soon Page", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "html5-responsive-coming-soon-page", - "preview_url": "https://dawidolko.github.io/Website-Templates/html5-responsive-coming-soon-page/", - "description": "Html5 Responsive Coming Soon Page" - }, - { - "id": "da_icon_real_estate_developers_free_responsive_html_template", - "name": "Icon Real Estate Developers Free Responsive Html Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "icon-real-estate-developers-free-responsive-html-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/icon-real-estate-developers-free-responsive-html-template/", - "description": "Icon Real Estate Developers Free Responsive Html Template" - }, - { - "id": "da_indus_free_coming_soon_bootstrap_responsive_template", - "name": "Indus Free Coming Soon Bootstrap Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "indus-free-coming-soon-bootstrap-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/indus-free-coming-soon-bootstrap-responsive-template/", - "description": "Indus Free Coming Soon Bootstrap Responsive Template" - }, - { - "id": "da_interio", - "name": "Interio", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "interio", - "preview_url": "https://dawidolko.github.io/Website-Templates/interio/", - "description": "Interio" - }, - { - "id": "da_internet_portal", - "name": "Internet Portal", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "internet-portal", - "preview_url": "https://dawidolko.github.io/Website-Templates/internet-portal/", - "description": "Internet Portal" - }, - { - "id": "da_lazydays", - "name": "Lazydays", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "lazydays", - "preview_url": "https://dawidolko.github.io/Website-Templates/lazydays/", - "description": "Lazydays" - }, - { - "id": "da_light_coming_soon_html_responsive_template", - "name": "Light Coming Soon Html Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "light-coming-soon-html-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/light-coming-soon-html-responsive-template/", - "description": "Light Coming Soon Html Responsive Template" - }, - { - "id": "da_metropolis", - "name": "Metropolis", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "metropolis", - "preview_url": "https://dawidolko.github.io/Website-Templates/metropolis/", - "description": "Metropolis" - }, - { - "id": "da_midway_free_html5_website_template_for_multi_purpose", - "name": "Midway Free Html5 Website Template For Multi Purpose", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "midway-free-html5-website-template-for-multi-purpose", - "preview_url": "https://dawidolko.github.io/Website-Templates/midway-free-html5-website-template-for-multi-purpose/", - "description": "Midway Free Html5 Website Template For Multi Purpose" - }, - { - "id": "da_missunderstood", - "name": "Missunderstood", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "missunderstood", - "preview_url": "https://dawidolko.github.io/Website-Templates/missunderstood/", - "description": "Missunderstood" - }, - { - "id": "da_moon_free_bootstrap_coming_soon_template", - "name": "Moon Free Bootstrap Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "moon-free-bootstrap-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/moon-free-bootstrap-coming-soon-template/", - "description": "Moon Free Bootstrap Coming Soon Template" - }, - { - "id": "da_next_responsive_coming_soon_bootstrap_template", - "name": "Next Responsive Coming Soon Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "next-responsive-coming-soon-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/next-responsive-coming-soon-bootstrap-template/", - "description": "Next Responsive Coming Soon Bootstrap Template" - }, - { - "id": "da_orange_coming_soon_html_responsive_template", - "name": "Orange Coming Soon Html Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "orange-coming-soon-html-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/orange-coming-soon-html-responsive-template/", - "description": "Orange Coming Soon Html Responsive Template" - }, - { - "id": "da_park_city_bootstrap_html_real_estate_responsive_template", - "name": "Park City Bootstrap Html Real Estate Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "park-city-bootstrap-html-real-estate-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/park-city-bootstrap-html-real-estate-responsive-template/", - "description": "Park City Bootstrap Html Real Estate Responsive Template" - }, - { - "id": "da_plain", - "name": "Plain", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "plain", - "preview_url": "https://dawidolko.github.io/Website-Templates/plain/", - "description": "Plain" - }, - { - "id": "da_prosimii", - "name": "Prosimii", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "prosimii", - "preview_url": "https://dawidolko.github.io/Website-Templates/prosimii/", - "description": "Prosimii" - }, - { - "id": "da_relic_portal", - "name": "Relic Portal", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "relic-portal", - "preview_url": "https://dawidolko.github.io/Website-Templates/relic-portal/", - "description": "Relic Portal" - }, - { - "id": "da_reveal", - "name": "Reveal", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "reveal", - "preview_url": "https://dawidolko.github.io/Website-Templates/reveal/", - "description": "Reveal" - }, - { - "id": "da_rider_free_multi_purpose_bootstrap_template", - "name": "Rider Free Multi Purpose Bootstrap Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "rider-free-multi-purpose-bootstrap-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/rider-free-multi-purpose-bootstrap-template/", - "description": "Rider Free Multi Purpose Bootstrap Template" - }, - { - "id": "da_sample_site", - "name": "Sample Site", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "sample_site", - "preview_url": "https://dawidolko.github.io/Website-Templates/sample_site/", - "description": "Sample Site" - }, - { - "id": "da_simply_bootstrap_coming_soon_template", - "name": "Simply Bootstrap Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "simply-bootstrap-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/simply-bootstrap-coming-soon-template/", - "description": "Simply Bootstrap Coming Soon Template" - }, - { - "id": "da_sinorca", - "name": "Sinorca", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "sinorca", - "preview_url": "https://dawidolko.github.io/Website-Templates/sinorca/", - "description": "Sinorca" - }, - { - "id": "da_startbootstrap_grayscale_1_0_3", - "name": "Grayscale 1.0.3", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "startbootstrap-grayscale-1.0.3", - "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-grayscale-1.0.3/", - "description": "Grayscale 1.0.3" - }, - { - "id": "da_street_life", - "name": "Street Life", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "street-life", - "preview_url": "https://dawidolko.github.io/Website-Templates/street-life/", - "description": "Street Life" - }, - { - "id": "da_stylish_bootstrap_coming_soon_template", - "name": "Stylish Bootstrap Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "stylish-bootstrap-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/stylish-bootstrap-coming-soon-template/", - "description": "Stylish Bootstrap Coming Soon Template" - }, - { - "id": "da_target_multipurpose_free_bootstrap_responsive_template", - "name": "Target Multipurpose Free Bootstrap Responsive Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "target-multipurpose-free-bootstrap-responsive-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/target-multipurpose-free-bootstrap-responsive-template/", - "description": "Target Multipurpose Free Bootstrap Responsive Template" - }, - { - "id": "da_theme_changer_template", - "name": "Theme Changer Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "theme-changer-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/theme-changer-template/", - "description": "Theme Changer Template" - }, - { - "id": "da_themer_bootstrap_responsive_web_template", - "name": "Themer Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "themer-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/themer-bootstrap-responsive-web-template/", - "description": "Themer Bootstrap Responsive Web Template" - }, - { - "id": "da_thin_green_line", - "name": "Thin Green Line", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "thin-green-line", - "preview_url": "https://dawidolko.github.io/Website-Templates/thin-green-line/", - "description": "Thin Green Line" - }, - { - "id": "da_trendset_coming_soon_responsive_theme", - "name": "Trendset Coming Soon Responsive Theme", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "trendset-coming-soon-responsive-theme", - "preview_url": "https://dawidolko.github.io/Website-Templates/trendset-coming-soon-responsive-theme/", - "description": "Trendset Coming Soon Responsive Theme" - }, - { - "id": "da_trendy_free_bootstrap_responsive_website_template", - "name": "Trendy Free Bootstrap Responsive Website Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "trendy-free-bootstrap-responsive-website-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/trendy-free-bootstrap-responsive-website-template/", - "description": "Trendy Free Bootstrap Responsive Website Template" - }, - { - "id": "da_unique_free_responsive_html5_template", - "name": "Unique Free Responsive Html5 Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "unique-free-responsive-html5-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/unique-free-responsive-html5-template/", - "description": "Unique Free Responsive Html5 Template" - }, - { - "id": "da_vento_coming_soon_responsive_theme", - "name": "Vento Coming Soon Responsive Theme", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "vento-coming-soon-responsive-theme", - "preview_url": "https://dawidolko.github.io/Website-Templates/vento-coming-soon-responsive-theme/", - "description": "Vento Coming Soon Responsive Theme" - }, - { - "id": "da_viver_free_html5_bootstrap_coming_soon_template", - "name": "Viver Free Html5 Bootstrap Coming Soon Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "viver-free-html5-bootstrap-coming-soon-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/viver-free-html5-bootstrap-coming-soon-template/", - "description": "Viver Free Html5 Bootstrap Coming Soon Template" - }, - { - "id": "da_webtrends_free_bootstrap_responsive_web_template", - "name": "Webtrends Free Bootstrap Responsive Web Template", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "webtrends-free-bootstrap-responsive-web-template", - "preview_url": "https://dawidolko.github.io/Website-Templates/webtrends-free-bootstrap-responsive-web-template/", - "description": "Webtrends Free Bootstrap Responsive Web Template" - }, - { - "id": "da_zenlike", - "name": "Zenlike", - "source": "dawidolko", - "repo_url": "https://github.com/dawidolko/Website-Templates", - "sparse_path": "zenlike", - "preview_url": "https://dawidolko.github.io/Website-Templates/zenlike/", - "description": "Zenlike" - } - ] - } - ] +{ + "categories": [ + { + "id": "business", + "name": "Бизнес и корпоративные", + "icon": "briefcase", + "templates": [ + { + "id": "h5up_aerial", + "name": "Aerial", + "source": "html5up", + "description": "Корпоративный сайт с минималистичным дизайном", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "aerial", + "preview_url": "https://html5up.net/aerial/" + }, + { + "id": "h5up_alpha", + "name": "Alpha", + "source": "html5up", + "description": "Профессиональный корпоративный шаблон", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "alpha", + "preview_url": "https://html5up.net/alpha/" + }, + { + "id": "h5up_arcana", + "name": "Arcana", + "source": "html5up", + "description": "Стильный деловой сайт с эффектами", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "arcana", + "preview_url": "https://html5up.net/arcana/" + }, + { + "id": "h5up_directive", + "name": "Directive", + "source": "html5up", + "description": "Компактный корпоративный шаблон", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "directive", + "preview_url": "https://html5up.net/directive/" + }, + { + "id": "h5up_dimension", + "name": "Dimension", + "source": "html5up", + "description": "Элегантный деловой портал", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "dimension", + "preview_url": "https://html5up.net/dimension/" + }, + { + "id": "h5up_editorial", + "name": "Editorial", + "source": "html5up", + "description": "Деловой журнальный сайт", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "editorial", + "preview_url": "https://html5up.net/editorial/" + }, + { + "id": "h5up_helios", + "name": "Helios", + "source": "html5up", + "description": "Современный бизнес-сайт", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "helios", + "preview_url": "https://html5up.net/helios/" + }, + { + "id": "h5up_identity", + "name": "Identity", + "source": "html5up", + "description": "Профильная карточка компании", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "identity", + "preview_url": "https://html5up.net/identity/" + }, + { + "id": "lz_atlanta_business", + "name": "Atlanta Business", + "source": "learning-zone", + "description": "Шаблон для бизнес-консультаций", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "atlanta-free-business-bootstrap-template", + "preview_url": "https://learning-zone.github.io/website-templates/atlanta-free-business-bootstrap-template/" + }, + { + "id": "lz_creative_bee", + "name": "Creative Bee Corporate", + "source": "learning-zone", + "description": "Креативное корпоративное агентство", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "creative-bee-corporate-free-html5-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/creative-bee-corporate-free-html5-web-template/" + }, + { + "id": "lz_frames_corporate", + "name": "Frames Corporate", + "source": "learning-zone", + "description": "Корпоративный сайт с фреймами", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "frames-corporate-bootstrap-free-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/frames-corporate-bootstrap-free-html5-template/" + }, + { + "id": "lz_ninja_consulting", + "name": "Ninja Business Consulting", + "source": "learning-zone", + "description": "Сайт бизнес-консультаций", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "ninja-business-consulting-html-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/ninja-business-consulting-html-responsive-web-template/" + }, + { + "id": "lz_vone_business", + "name": "Vone Business", + "source": "learning-zone", + "description": "Адаптивный бизнес-шаблон", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "vone-free-business-html5-responsive-website", + "preview_url": "https://learning-zone.github.io/website-templates/vone-free-business-html5-responsive-website/" + }, + { + "id": "lz_kavin_corporate", + "name": "Kavin Corporate", + "source": "learning-zone", + "description": "Элегантный корпоративный портал", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "kavin-corporate-bootstrap-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/kavin-corporate-bootstrap-responsive-web-template/" + }, + { + "id": "lz_swifty_business", + "name": "Swifty Business", + "source": "learning-zone", + "description": "Быстрый и стильный бизнес-сайт", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "swifty-business-html5-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/swifty-business-html5-website-template/" + }, + { + "id": "lz_techking_corporate", + "name": "TechKing Corporate", + "source": "learning-zone", + "description": "IT-компании и технологический бизнес", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "techking-free-html5-template-for-corporate-business", + "preview_url": "https://learning-zone.github.io/website-templates/techking-free-html5-template-for-corporate-business/" + }, + { + "id": "lz_everest_corporate", + "name": "Everest Corporate", + "source": "learning-zone", + "description": "Профессиональный корпоративный портал", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "everest-corporate-business-bootstrap-template", + "preview_url": "https://learning-zone.github.io/website-templates/everest-corporate-business-bootstrap-template/" + }, + { + "id": "sb_agency", + "name": "StartBootstrap Agency", + "source": "startbootstrap", + "description": "Сайт креативного агентства", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-agency", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-agency/" + }, + { + "id": "sb_modern_business", + "name": "StartBootstrap Modern Business", + "source": "startbootstrap", + "description": "Современный шаблон для бизнеса", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-modern-business", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-modern-business/" + }, + { + "id": "th_bizpage", + "name": "Bizpage", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bizpage", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bizpage/", + "description": "Free Bootstrap 4 Business Template" + }, + { + "id": "th_boxus", + "name": "Boxus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/boxus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/boxus/", + "description": "Boxus is a free HTML website template for the creative agency. Its boxed style and unique layout will help you create any website that attracts more audience." + }, + { + "id": "th_glint", + "name": "Glint", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/glint", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/glint/", + "description": "A digital agency website template. It's free to download and easy to customize." + }, + { + "id": "th_office", + "name": "Office", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Office", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Office/", + "description": "Office - Free Responsive Multipage Bootstrap Template for Small and Medium Business" + }, + { + "id": "th_startup", + "name": "Startup", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/startup", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/startup/", + "description": "Startup" + }, + { + "id": "th_startup2", + "name": "Startup2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/startup2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/startup2/", + "description": "Startup2" + }, + { + "id": "th_euro_travels", + "name": "Euro Travels", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Euro-Travels", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Euro-Travels/", + "description": "A Free Responsive Agency Template " + }, + { + "id": "th_blue", + "name": "Blue", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/blue", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/blue/", + "description": "Free One Page Bootstrap Agency Template" + }, + { + "id": "th_cleaning_company", + "name": "Cleaning Company", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cleaning-company", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cleaning-company/", + "description": "Cleaning Company" + }, + { + "id": "th_agency_2", + "name": "Agency 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/agency-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/agency-2/", + "description": "Agency 2" + }, + { + "id": "th_finances", + "name": "Finances", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/finances", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/finances/", + "description": "Finances" + }, + { + "id": "th_finance_business", + "name": "Finance Business", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/finance-business", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/finance-business/", + "description": "Finance Business" + }, + { + "id": "th_fotogency", + "name": "Fotogency", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fotogency", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fotogency/", + "description": "A Photography Agency Web Template" + }, + { + "id": "th_constructioncompany", + "name": "Constructioncompany", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/constructioncompany", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/constructioncompany/", + "description": "Constructioncompany" + }, + { + "id": "th_law", + "name": "Law", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/law", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/law/", + "description": "A Free Bootstrap 4 Law Firm Template for your convenience" + }, + { + "id": "th_startupbusiness", + "name": "Startupbusiness", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/startupbusiness", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/startupbusiness/", + "description": "Startupbusiness" + }, + { + "id": "th_law_firm", + "name": "Law Firm", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/law-firm", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/law-firm/", + "description": "Law Firm" + }, + { + "id": "th_open_enterprise", + "name": "Open Enterprise", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/open-enterprise", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/open-enterprise/", + "description": "Open Enterprise" + }, + { + "id": "th_consultingbiz", + "name": "Consultingbiz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/consultingbiz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/consultingbiz/", + "description": "Consultingbiz" + }, + { + "id": "th_navigator", + "name": "Navigator", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/navigator", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/navigator/", + "description": "Free One Page Agency Template" + }, + { + "id": "th_industrious", + "name": "Industrious", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/industrious", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/industrious/", + "description": "It's Industrious, a responsive template for business websites. Let's get it here:" + }, + { + "id": "th_robot_factory", + "name": "Robot Factory", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/robot_factory", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/robot_factory/", + "description": "Best Responsive Free HTML5 Template for a Start-up Factory, industry or company" + }, + { + "id": "th_traveler", + "name": "Traveler", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/traveler", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/traveler/", + "description": "Bootstrap template for travel agency and itinerary websites." + }, + { + "id": "th_avada_agency_pro", + "name": "Avada Agency Pro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/avada-agency-pro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/avada-agency-pro/", + "description": "Avada Agency Pro" + }, + { + "id": "th_estartup", + "name": "Estartup", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/estartup", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/estartup/", + "description": "Estartup" + }, + { + "id": "th_creativeagency", + "name": "Creativeagency", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/creativeagency", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/creativeagency/", + "description": "Creativeagency" + }, + { + "id": "th_renessa", + "name": "Renessa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Renessa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Renessa/", + "description": "Renessa - A Free Responsive Multipurpose Bootstrap Template for Agency and Personal Website" + }, + { + "id": "th_themelight", + "name": "Themelight", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/themelight", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/themelight/", + "description": "Free Bootstrap Business Template" + }, + { + "id": "th_reveal", + "name": "Reveal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/reveal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/reveal/", + "description": "Bootstrap 4 based business template with a compelling design. Download now:" + }, + { + "id": "th_outing", + "name": "Outing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/outing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/outing/", + "description": "A highly efficient Bootstrap 4 website template for travel agency. Download here:" + }, + { + "id": "th_b_hero", + "name": "B Hero", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/b-hero", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/b-hero/", + "description": "Business website template built on Bootstrap 4. It's free and mobile-friendly." + }, + { + "id": "th_lawfirm", + "name": "Lawfirm", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lawfirm", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lawfirm/", + "description": "Lawfirm" + }, + { + "id": "th_airspace", + "name": "Airspace", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/airspace", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/airspace/", + "description": "Responsive Business Agency Template Free" + }, + { + "id": "th_ebusiness", + "name": "Ebusiness", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ebusiness", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ebusiness/", + "description": "Ebusiness" + }, + { + "id": "th_businessbox", + "name": "Businessbox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/businessbox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/businessbox/", + "description": "A stunning business template with Bootstrap 4 and multi-page." + }, + { + "id": "th_consulting", + "name": "Consulting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/consulting", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/consulting/", + "description": "Consulting" + }, + { + "id": "th_sulfer_multipage_business_html5_template", + "name": "Sulfer Multipage Business Html5 Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sulfer-multipage-business-html5-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sulfer-multipage-business-html5-template/", + "description": "Sulfer Multipage Business Html5 Template" + }, + { + "id": "th_go_crepe", + "name": "Go Crepe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/go-crepe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/go-crepe/", + "description": "Go Crepe is free HTML5 business template with one page layout." + }, + { + "id": "th_agency", + "name": "Agency", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/agency", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/agency/", + "description": "Multipage Responsive Agency Template" + }, + { + "id": "th_transitive", + "name": "Transitive", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/transitive", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/transitive/", + "description": "Transitive is a free HTML5 business template with parallax and video background. Download now from the link below:" + }, + { + "id": "th_the_seo_company", + "name": "The Seo Company", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/the-seo-company", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/the-seo-company/", + "description": "The Seo Company" + }, + { + "id": "th_design4profit", + "name": "Design4Profit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Design4Profit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Design4Profit/", + "description": "Design4Profit - An Elegant Responsive Business Template for large, medium and small company." + }, + { + "id": "th_creative_agency_2", + "name": "Creative Agency 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/creative-agency-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/creative-agency-2/", + "description": "Creative Agency 2" + }, + { + "id": "th_creative_bootstrap_4", + "name": "Creative Bootstrap 4", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/creative-bootstrap-4", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/creative-bootstrap-4/", + "description": "Get this Bootstrap 4 template to create a compelling business website." + }, + { + "id": "th_creative_star", + "name": "Creative Star", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Creative-STAR", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Creative-STAR/", + "description": "A Free One Page Agency Bootstrap Template " + }, + { + "id": "th_heado", + "name": "Heado", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Heado", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Heado/", + "description": "Free Web Agency Website Template" + }, + { + "id": "th_villaagency", + "name": "Villaagency", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/VillaAgency", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/VillaAgency/", + "description": "Villaagency" + }, + { + "id": "th_alien", + "name": "Alien", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/alien", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/alien/", + "description": "Free Responsive Business Website Template" + }, + { + "id": "th_buildermax", + "name": "Buildermax", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/BuilderMax", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/BuilderMax/", + "description": "Free Responive Business Website Template" + }, + { + "id": "th_boravio_dk", + "name": "Boravio.Dk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Boravio.dk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Boravio.dk/", + "description": "Landingpage for a danish startup online shop 💻⚙️" + }, + { + "id": "th_lifesure", + "name": "Lifesure", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/LifeSure", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/LifeSure/", + "description": "Free Business & corporate Website Template" + }, + { + "id": "th_acuas", + "name": "Acuas", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/acuas", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/acuas/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_travisa", + "name": "Travisa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Travisa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Travisa/", + "description": "Free Bootstrap 5 Responsive Business Website Template" + }, + { + "id": "th_investa", + "name": "Investa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Investa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Investa/", + "description": "Free Investment Business Website Template" + }, + { + "id": "th_mailler", + "name": "Mailler", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Mailler", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Mailler/", + "description": "Free Multipage Responsive Bootstrap 5 Business Website Template" + }, + { + "id": "th_stocker", + "name": "Stocker", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stocker", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stocker/", + "description": "Free Bootstrap 5 Stock Business Website Template" + }, + { + "id": "th_electricca", + "name": "Electricca", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/electricca", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/electricca/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_plumberz", + "name": "Plumberz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Plumberz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Plumberz/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_flare", + "name": "Flare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/flare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/flare/", + "description": "Free Agency Landing Page Template" + }, + { + "id": "th_hvac_new", + "name": "Hvac New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hvac-new", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hvac-new/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_selecao", + "name": "Selecao", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Selecao", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Selecao/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_active", + "name": "Active", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/active", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/active/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_impact", + "name": "Impact", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Impact", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Impact/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_nova_new", + "name": "Nova New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nova-new", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nova-new/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_bizland", + "name": "Bizland", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/BizLand", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/BizLand/", + "description": "Free Bootstrap 5 Business Website Template" + }, + { + "id": "th_company", + "name": "Company", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Company", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Company/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_romyk", + "name": "Romyk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Romyk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Romyk/", + "description": "Free Business Website Template" + }, + { + "id": "th_vesperr", + "name": "Vesperr", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vesperr", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vesperr/", + "description": "Download this free agency template from:" + }, + { + "id": "th_estateagency", + "name": "Estateagency", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/estateagency", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/estateagency/", + "description": "Estateagency" + }, + { + "id": "th_inazuma_tailwind", + "name": "Inazuma Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/inazuma-tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/inazuma-tailwind/", + "description": "A company landing page website template built with Tailwind CSS. " + }, + { + "id": "th_startup_nextjs", + "name": "Startup Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/startup-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/startup-nextjs/", + "description": "Startup Nextjs" + }, + { + "id": "th_business", + "name": "Business", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Business", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Business/", + "description": "Business" + }, + { + "id": "th_pms_investment_services", + "name": "Pms Investment Services", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pms-investment-services", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pms-investment-services/", + "description": "PMS Next.js Finance Website Template" + }, + { + "id": "th_agency_tailwind", + "name": "Agency Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/agency-tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/agency-tailwind/", + "description": "Agency - Tailwind Agency landing page Template" + }, + { + "id": "da_agile_agency_free_bootstrap_web_template", + "name": "Agile Agency Free Bootstrap Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "agile-agency-free-bootstrap-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/agile-agency-free-bootstrap-web-template/", + "description": "Agile Agency Free Bootstrap Web Template" + }, + { + "id": "da_atlanta_free_business_bootstrap_template", + "name": "Atlanta Free Business Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "atlanta-free-business-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/atlanta-free-business-bootstrap-template/", + "description": "Atlanta Free Business Bootstrap Template" + }, + { + "id": "da_businessline_corporate_portfolio_bootstrap_responsive_web", + "name": "Businessline Corporate Portfolio Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "businessline-corporate-portfolio-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/businessline-corporate-portfolio-bootstrap-responsive-web-template/", + "description": "Businessline Corporate Portfolio Bootstrap Responsive Web Template" + }, + { + "id": "da_businessr_corporate_bootstrap_responsive_web_template", + "name": "Businessr Corporate Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "businessr-corporate-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/businessr-corporate-bootstrap-responsive-web-template/", + "description": "Businessr Corporate Bootstrap Responsive Web Template" + }, + { + "id": "da_creative_bee_corporate_free_html5_web_template", + "name": "Creative Bee Corporate Free Html5 Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "creative-bee-corporate-free-html5-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/creative-bee-corporate-free-html5-web-template/", + "description": "Creative Bee Corporate Free Html5 Web Template" + }, + { + "id": "da_creative_free_responsive_html5_business_template", + "name": "Creative Free Responsive Html5 Business Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "creative-free-responsive-html5-business-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/creative-free-responsive-html5-business-template/", + "description": "Creative Free Responsive Html5 Business Template" + }, + { + "id": "da_darktouch_corporate_portfolio_bootstrap_responsive_web_te", + "name": "Darktouch Corporate Portfolio Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "darktouch-corporate-portfolio-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/darktouch-corporate-portfolio-bootstrap-responsive-web-template/", + "description": "Darktouch Corporate Portfolio Bootstrap Responsive Web Template" + }, + { + "id": "da_enlive_corporate_free_html5_bootstrap_web_template", + "name": "Enlive Corporate Free Html5 Bootstrap Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "enlive-corporate-free-html5-bootstrap-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/enlive-corporate-free-html5-bootstrap-web-template/", + "description": "Enlive Corporate Free Html5 Bootstrap Web Template" + }, + { + "id": "da_everest_corporate_business_bootstrap_template", + "name": "Everest Corporate Business Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "everest-corporate-business-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/everest-corporate-business-bootstrap-template/", + "description": "Everest Corporate Business Bootstrap Template" + }, + { + "id": "da_frames_corporate_bootstrap_free_html5_template", + "name": "Frames Corporate Bootstrap Free Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "frames-corporate-bootstrap-free-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/frames-corporate-bootstrap-free-html5-template/", + "description": "Frames Corporate Bootstrap Free Html5 Template" + }, + { + "id": "da_free_bootstrap_template_rockline_business", + "name": "Free Bootstrap Template Rockline Business", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "free-bootstrap-template-rockline-business", + "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-rockline-business/", + "description": "Free Bootstrap Template Rockline Business" + }, + { + "id": "da_kavin_corporate_bootstrap_responsive_web_template", + "name": "Kavin Corporate Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "kavin-corporate-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/kavin-corporate-bootstrap-responsive-web-template/", + "description": "Kavin Corporate Bootstrap Responsive Web Template" + }, + { + "id": "da_moto_business_html5_responsive_web_template", + "name": "Moto Business Html5 Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "moto-business-html5-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/moto-business-html5-responsive-web-template/", + "description": "Moto Business Html5 Responsive Web Template" + }, + { + "id": "da_ninja_business_consulting_html_responsive_web_template", + "name": "Ninja Business Consulting Html Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "ninja-business-consulting-html-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/ninja-business-consulting-html-responsive-web-template/", + "description": "Ninja Business Consulting Html Responsive Web Template" + }, + { + "id": "da_retro_free_consulting_responsive_html5_website_template", + "name": "Retro Free Consulting Responsive Html5 Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "retro-free-consulting-responsive-html5-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/retro-free-consulting-responsive-html5-website-template/", + "description": "Retro Free Consulting Responsive Html5 Website Template" + }, + { + "id": "da_rocket_business_bootstrap_free_responsive_web_theme", + "name": "Rocket Business Bootstrap Free Responsive Web Theme", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "rocket-business-bootstrap-free-responsive-web-theme", + "preview_url": "https://dawidolko.github.io/Website-Templates/rocket-business-bootstrap-free-responsive-web-theme/", + "description": "Rocket Business Bootstrap Free Responsive Web Theme" + }, + { + "id": "da_startbootstrap_agency_1_0_2", + "name": "Agency 1.0.2", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "startbootstrap-agency-1.0.2", + "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-agency-1.0.2/", + "description": "Agency 1.0.2" + }, + { + "id": "da_swifty_business_html5_website_template", + "name": "Swifty Business Html5 Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "swifty-business-html5-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/swifty-business-html5-website-template/", + "description": "Swifty Business Html5 Website Template" + }, + { + "id": "da_team_business_flat_bootstrap_html5_template", + "name": "Team Business Flat Bootstrap Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "team-business-flat-bootstrap-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/team-business-flat-bootstrap-html5-template/", + "description": "Team Business Flat Bootstrap Html5 Template" + }, + { + "id": "da_techking_free_html5_template_for_corporate_business", + "name": "Techking Free Html5 Template For Corporate Business", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "techking-free-html5-template-for-corporate-business", + "preview_url": "https://dawidolko.github.io/Website-Templates/techking-free-html5-template-for-corporate-business/", + "description": "Techking Free Html5 Template For Corporate Business" + }, + { + "id": "da_times_corporate_portfolio_bootstrap_responsive_web_templa", + "name": "Times Corporate Portfolio Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "times-corporate-portfolio-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/times-corporate-portfolio-bootstrap-responsive-web-template/", + "description": "Times Corporate Portfolio Bootstrap Responsive Web Template" + }, + { + "id": "da_vibe_free_html5_template_for_corporate_website", + "name": "Vibe Free Html5 Template For Corporate Website", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "vibe-free-html5-template-for-corporate-website", + "preview_url": "https://dawidolko.github.io/Website-Templates/vibe-free-html5-template-for-corporate-website/", + "description": "Vibe Free Html5 Template For Corporate Website" + }, + { + "id": "da_vibrant_corporate_bootstrap_responsive_website_template", + "name": "Vibrant Corporate Bootstrap Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "vibrant-corporate-bootstrap-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/vibrant-corporate-bootstrap-responsive-website-template/", + "description": "Vibrant Corporate Bootstrap Responsive Website Template" + }, + { + "id": "da_vone_free_business_html5_responsive_website", + "name": "Vone Free Business Html5 Responsive Website", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "vone-free-business-html5-responsive-website", + "preview_url": "https://dawidolko.github.io/Website-Templates/vone-free-business-html5-responsive-website/", + "description": "Vone Free Business Html5 Responsive Website" + }, + { + "id": "da_vteam_a_corporate_multipurpose_free_bootstrap_responsive_", + "name": "Vteam A Corporate Multipurpose Free Bootstrap Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "vteam-a-corporate-multipurpose-free-bootstrap-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/vteam-a-corporate-multipurpose-free-bootstrap-responsive-template/", + "description": "Vteam A Corporate Multipurpose Free Bootstrap Responsive Template" + } + ] + }, + { + "id": "ecommerce", + "name": "Интернет-магазины", + "icon": "shopping-cart", + "templates": [ + { + "id": "h5up_overflow", + "name": "Overflow", + "source": "html5up", + "description": "Портал онлайн-магазина", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "overflow", + "preview_url": "https://html5up.net/overflow/" + }, + { + "id": "h5up_minimaxing", + "name": "Minimaxing", + "source": "html5up", + "description": "Минималистичный магазин", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "minimaxing", + "preview_url": "https://html5up.net/minimaxing/" + }, + { + "id": "h5up_multiverse", + "name": "Multiverse", + "source": "html5up", + "description": "Мультифункциональный магазин", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "multiverse", + "preview_url": "https://html5up.net/multiverse/" + }, + { + "id": "h5up_telephasic", + "name": "Telephasic", + "source": "html5up", + "description": "Современный интернет-магазин", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "telephasic", + "preview_url": "https://html5up.net/telephasic/" + }, + { + "id": "h5up_miniport", + "name": "Miniport", + "source": "html5up", + "description": "Компактный каталог товаров", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "miniport", + "preview_url": "https://html5up.net/miniport/" + }, + { + "id": "th_cozastore", + "name": "Cozastore", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cozastore", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cozastore/", + "description": "Cozastore" + }, + { + "id": "th_eshopper", + "name": "Eshopper", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eshopper", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eshopper/", + "description": "Eshopper" + }, + { + "id": "th_zay_shop", + "name": "Zay Shop", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/zay-shop", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/zay-shop/", + "description": "Zay Shop" + }, + { + "id": "th_shop", + "name": "Shop", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/shop", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/shop/", + "description": "Shop" + }, + { + "id": "th_hexashop", + "name": "Hexashop", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hexashop", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hexashop/", + "description": "Hexashop" + }, + { + "id": "th_coloshop", + "name": "Coloshop", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/coloshop", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/coloshop/", + "description": "Coloshop" + }, + { + "id": "th_productly", + "name": "Productly", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/productly", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/productly/", + "description": "Productly" + }, + { + "id": "th_metronic_shop_ui", + "name": "Metronic Shop Ui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Metronic-Shop-UI", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Metronic-Shop-UI/", + "description": "Metronic Shop Ui" + }, + { + "id": "th_multishop", + "name": "Multishop", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/multishop", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/multishop/", + "description": "Multishop" + }, + { + "id": "th_freshshop", + "name": "Freshshop", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/freshshop", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/freshshop/", + "description": "Freshshop" + }, + { + "id": "th_minishop", + "name": "Minishop", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/minishop", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/minishop/", + "description": "Minishop" + }, + { + "id": "th_shoppers", + "name": "Shoppers", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/shoppers", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/shoppers/", + "description": "Shoppers" + }, + { + "id": "th_adminmart", + "name": "Adminmart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adminmart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adminmart/", + "description": "Adminmart" + }, + { + "id": "th_product_admin", + "name": "Product Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/product-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/product-admin/", + "description": "Product Admin" + }, + { + "id": "th_liquorstore", + "name": "Liquorstore", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/liquorstore", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/liquorstore/", + "description": "Liquorstore" + }, + { + "id": "th_smartedu", + "name": "Smartedu", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/smartedu", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/smartedu/", + "description": "Smartedu" + }, + { + "id": "th_shopmax", + "name": "Shopmax", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/shopmax", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/shopmax/", + "description": "Shopmax" + }, + { + "id": "th_pillowmart", + "name": "Pillowmart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pillowmart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pillowmart/", + "description": "Pillowmart" + }, + { + "id": "th_vex_bootstrap_4_free_product_landing_page_template", + "name": "Vex Bootstrap 4 Free Product Landing Page Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vex-Bootstrap-4-Free-product-landing-page-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vex-Bootstrap-4-Free-product-landing-page-template/", + "description": "Free Bootstrap 4 landing page template to download" + }, + { + "id": "th_estore", + "name": "Estore", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/estore", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/estore/", + "description": "Estore" + }, + { + "id": "th_martine", + "name": "Martine", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/martine", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/martine/", + "description": "Martine" + }, + { + "id": "th_evie", + "name": "Evie", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/evie", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/evie/", + "description": "A production-ready theme for your projects with a minimal style guide https://evie.undraw.co" + }, + { + "id": "th_ministore", + "name": "Ministore", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MiniStore", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MiniStore/", + "description": "Ministore" + }, + { + "id": "th_coffo", + "name": "Coffo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Coffo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Coffo/", + "description": "Free Coffee Shop Website Template" + }, + { + "id": "th_bookly", + "name": "Bookly", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Bookly", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Bookly/", + "description": "Free HTML5 eCommerce Website Template" + }, + { + "id": "th_organic", + "name": "Organic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/organic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/organic/", + "description": "Free eCommerce Website template" + }, + { + "id": "th_booksaw", + "name": "Booksaw", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/booksaw", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/booksaw/", + "description": "Free eCommerce Website template" + }, + { + "id": "th_stylish", + "name": "Stylish", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stylish", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stylish/", + "description": "Free eCommerce Website template" + }, + { + "id": "th_foodmart", + "name": "Foodmart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/FoodMart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/FoodMart/", + "description": "Free Bootstrap 5 eCom Website Template" + }, + { + "id": "th_kaira", + "name": "Kaira", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kaira", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kaira/", + "description": "Free Bootstrap 5 eCommerce Website template" + }, + { + "id": "th_nextmerce_nextjs", + "name": "Nextmerce Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nextmerce-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nextmerce-nextjs/", + "description": "NextMerce - Free Next.js eCommerce Template" + }, + { + "id": "th_nordic", + "name": "Nordic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nordic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nordic/", + "description": "Nordic Store - Minimal ecommerce product listing template" + }, + { + "id": "da_coffee_shop_free_html5_template", + "name": "Coffee Shop Free Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "coffee-shop-free-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/coffee-shop-free-html5-template/", + "description": "Coffee Shop Free Html5 Template" + }, + { + "id": "da_smart_interior_designs_html5_bootstrap_web_template", + "name": "Smart Interior Designs Html5 Bootstrap Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "smart-interior-designs-html5-bootstrap-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/smart-interior-designs-html5-bootstrap-web-template/", + "description": "Smart Interior Designs Html5 Bootstrap Web Template" + } + ] + }, + { + "id": "medical", + "name": "Медицина и фитнес", + "icon": "heart", + "templates": [ + { + "id": "lz_medplus_medical", + "name": "MedPlus Medical", + "source": "learning-zone", + "description": "Сайт медицинской клиники", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "medplus-medical", + "preview_url": "https://learning-zone.github.io/website-templates/medplus-medical/" + }, + { + "id": "lz_vcare_hospital", + "name": "VCare Hospital", + "source": "learning-zone", + "description": "Шаблон для больницы", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "vcare-free-html5-template-hospital-website", + "preview_url": "https://learning-zone.github.io/website-templates/vcare-free-html5-template-hospital-website/" + }, + { + "id": "lz_touch_hospital", + "name": "Touch Hospital", + "source": "learning-zone", + "description": "Медицинский центр на Bootstrap", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "touch-hospital-medical-bootstrap-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/touch-hospital-medical-bootstrap-html5-template/" + }, + { + "id": "lz_fit_healthy_fitness", + "name": "Fit Healthy Fitness", + "source": "learning-zone", + "description": "Фитнес-клуб и спортзал", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "fit-healthy-fitness-and-gym-html5-bootstrap-theme", + "preview_url": "https://learning-zone.github.io/website-templates/fit-healthy-fitness-and-gym-html5-bootstrap-theme/" + }, + { + "id": "lz_fitness_zone", + "name": "Fitness Zone", + "source": "learning-zone", + "description": "Зона фитнеса и тренировок", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "fitness-zone-html5-bootstrap-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/fitness-zone-html5-bootstrap-responsive-web-template/" + }, + { + "id": "th_gymlife", + "name": "Gymlife", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gymlife", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gymlife/", + "description": "Gymlife" + }, + { + "id": "th_medicalcenter", + "name": "Medicalcenter", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medicalcenter", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medicalcenter/", + "description": "Medicalcenter" + }, + { + "id": "th_physicaltherapy", + "name": "Physicaltherapy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/physicaltherapy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/physicaltherapy/", + "description": "Physicaltherapy" + }, + { + "id": "th_lifecare", + "name": "Lifecare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lifecare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lifecare/", + "description": "Free website template for hospitals and clinics." + }, + { + "id": "th_health_center", + "name": "Health Center", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/health-center", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/health-center/", + "description": "Health Center" + }, + { + "id": "th_healthcouch", + "name": "Healthcouch", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/healthcouch", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/healthcouch/", + "description": "Healthcouch" + }, + { + "id": "th_yogaflex", + "name": "Yogaflex", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yogaflex", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yogaflex/", + "description": "Yogaflex" + }, + { + "id": "th_yogalax", + "name": "Yogalax", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yogalax", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yogalax/", + "description": "Yogalax" + }, + { + "id": "th_fitnessclub", + "name": "Fitnessclub", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fitnessclub", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fitnessclub/", + "description": "Fitnessclub" + }, + { + "id": "th_healthcoach", + "name": "Healthcoach", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/healthcoach", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/healthcoach/", + "description": "Healthcoach" + }, + { + "id": "th_yoga", + "name": "Yoga", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yoga", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yoga/", + "description": "Yoga" + }, + { + "id": "th_top_gym", + "name": "Top Gym", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/top-gym", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/top-gym/", + "description": "Top Gym" + }, + { + "id": "th_xgym", + "name": "Xgym", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/xgym", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/xgym/", + "description": "Xgym" + }, + { + "id": "th_gym2", + "name": "Gym2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gym2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gym2/", + "description": "Gym2" + }, + { + "id": "th_yoga2", + "name": "Yoga2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yoga2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yoga2/", + "description": "Yoga2" + }, + { + "id": "th_gymer", + "name": "Gymer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gymer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gymer/", + "description": "Gymer" + }, + { + "id": "th_gym", + "name": "Gym", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gym", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gym/", + "description": "Gym" + }, + { + "id": "th_fitnesstrainer", + "name": "Fitnesstrainer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fitnesstrainer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fitnesstrainer/", + "description": "Fitnesstrainer" + }, + { + "id": "th_fitness_1", + "name": "Fitness 1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fitness-1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fitness-1/", + "description": "Free Bootstrap 4 fitness website template" + }, + { + "id": "th_yogasan", + "name": "Yogasan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Yogasan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Yogasan/", + "description": "Yogasan" + }, + { + "id": "th_yogaclass", + "name": "Yogaclass", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yogaClass", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yogaClass/", + "description": "Yogaclass" + }, + { + "id": "th_medilab", + "name": "Medilab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MediLab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MediLab/", + "description": "Free Bootstrap 5 Medical Website Template" + }, + { + "id": "th_medicio", + "name": "Medicio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MediCio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MediCio/", + "description": "Free Bootstrap 5 Medical Website Template" + }, + { + "id": "th_fitness", + "name": "Fitness", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Fitness", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Fitness/", + "description": "Free Bootstrap 5 Fitness Website Template" + }, + { + "id": "th_clinic", + "name": "Clinic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Clinic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Clinic/", + "description": "Clinic" + }, + { + "id": "th_fitness_bootstrap", + "name": "Fitness Bootstrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Fitness-Bootstrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Fitness-Bootstrap/", + "description": "Fitness Bootstrap" + }, + { + "id": "th_dental_pro", + "name": "Dental Pro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dental-pro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dental-pro/", + "description": "Dental Pro" + }, + { + "id": "da_add_life_health_fitness_free_bootstrap_html5_template", + "name": "Add Life Health Fitness Free Bootstrap Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "add-life-health-fitness-free-bootstrap-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/add-life-health-fitness-free-bootstrap-html5-template/", + "description": "Add Life Health Fitness Free Bootstrap Html5 Template" + }, + { + "id": "da_fit_healthy_fitness_and_gym_html5_bootstrap_theme", + "name": "Fit Healthy Fitness And Gym Html5 Bootstrap Theme", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "fit-healthy-fitness-and-gym-html5-bootstrap-theme", + "preview_url": "https://dawidolko.github.io/Website-Templates/fit-healthy-fitness-and-gym-html5-bootstrap-theme/", + "description": "Fit Healthy Fitness And Gym Html5 Bootstrap Theme" + }, + { + "id": "da_fitness_zone_html5_bootstrap_responsive_web_template", + "name": "Fitness Zone Html5 Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "fitness-zone-html5-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/fitness-zone-html5-bootstrap-responsive-web-template/", + "description": "Fitness Zone Html5 Bootstrap Responsive Web Template" + }, + { + "id": "da_getdoctor_free_bootstrap_responsive_website_template", + "name": "Getdoctor Free Bootstrap Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "getdoctor-free-bootstrap-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/getdoctor-free-bootstrap-responsive-website-template/", + "description": "Getdoctor Free Bootstrap Responsive Website Template" + }, + { + "id": "da_medplus_medical", + "name": "Medplus Medical", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "medplus-medical", + "preview_url": "https://dawidolko.github.io/Website-Templates/medplus-medical/", + "description": "Medplus Medical" + }, + { + "id": "da_touch_hospital_medical_bootstrap_html5_template", + "name": "Touch Hospital Medical Bootstrap Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "touch-hospital-medical-bootstrap-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/touch-hospital-medical-bootstrap-html5-template/", + "description": "Touch Hospital Medical Bootstrap Html5 Template" + }, + { + "id": "da_vcare_free_html5_template_hospital_website", + "name": "Vcare Free Html5 Template Hospital Website", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "vcare-free-html5-template-hospital-website", + "preview_url": "https://dawidolko.github.io/Website-Templates/vcare-free-html5-template-hospital-website/", + "description": "Vcare Free Html5 Template Hospital Website" + } + ] + }, + { + "id": "education", + "name": "Образование", + "icon": "book", + "templates": [ + { + "id": "lz_bschool_education", + "name": "B-School Education", + "source": "learning-zone", + "description": "Сайт образовательного учреждения", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "b-school-free-education-html5-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/b-school-free-education-html5-website-template/" + }, + { + "id": "lz_learn_education", + "name": "Learn Education", + "source": "learning-zone", + "description": "Платформа онлайн-обучения", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "learn-educational-free-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/learn-educational-free-responsive-web-template/" + }, + { + "id": "lz_school_education", + "name": "School Education", + "source": "learning-zone", + "description": "Сайт школы", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "school-educational-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/school-educational-html5-template/" + }, + { + "id": "lz_victory_education", + "name": "Victory Education", + "source": "learning-zone", + "description": "Образовательный портал", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "victory-educational-institution-free-html5-bootstrap-template", + "preview_url": "https://learning-zone.github.io/website-templates/victory-educational-institution-free-html5-bootstrap-template/" + }, + { + "id": "th_elearning", + "name": "Elearning", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elearning", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elearning/", + "description": "Elearning" + }, + { + "id": "th_course", + "name": "Course", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/course", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/course/", + "description": "Course" + }, + { + "id": "th_edusite", + "name": "Edusite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/edusite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/edusite/", + "description": "For a top-grade education template, choose EduSite. It's free and responsive." + }, + { + "id": "th_grad_school", + "name": "Grad School", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/grad-school", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/grad-school/", + "description": "Grad School" + }, + { + "id": "th_courses", + "name": "Courses", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/courses", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/courses/", + "description": "Courses" + }, + { + "id": "th_oneschool", + "name": "Oneschool", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/oneschool", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/oneschool/", + "description": "Oneschool" + }, + { + "id": "th_education", + "name": "Education", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/education", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/education/", + "description": "Education" + }, + { + "id": "th_edulogy", + "name": "Edulogy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/edulogy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/edulogy/", + "description": "Bootstrap education template free download" + }, + { + "id": "th_tutor", + "name": "Tutor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tutor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tutor/", + "description": "Tutor" + }, + { + "id": "th_cooking_school", + "name": "Cooking School", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cooking-school", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cooking-school/", + "description": "Cooking School" + }, + { + "id": "th_jubilee", + "name": "Jubilee", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jubilee", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jubilee/", + "description": "Free Educational Website Template" + }, + { + "id": "th_scholar", + "name": "Scholar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/scholar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/scholar/", + "description": "Free Educational Website Template" + }, + { + "id": "th_oinia", + "name": "Oinia", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Oinia", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Oinia/", + "description": "Free Educational Website Template" + }, + { + "id": "th_babycare", + "name": "Babycare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/BabyCare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/BabyCare/", + "description": "Free Bootstrap 5 Educational Website Template" + }, + { + "id": "th_mentor", + "name": "Mentor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Mentor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Mentor/", + "description": "Free Bootstrap 5 Educational Website Template" + }, + { + "id": "th_profusion", + "name": "Profusion", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Profusion", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Profusion/", + "description": "Free Educational site template" + }, + { + "id": "th_e_learning", + "name": "E Learning", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/E-learning", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/E-learning/", + "description": "E Learning" + }, + { + "id": "th_si_educational_nextjs", + "name": "Si Educational Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/si-educational-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/si-educational-nextjs/", + "description": "Si Educational Nextjs" + }, + { + "id": "th_si_educational_website_template", + "name": "Si Educational Website Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Si-Educational-Website-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Si-Educational-Website-Template/", + "description": "Si Educational Website Template" + }, + { + "id": "th_nextjs_tailwind_course_landing_page", + "name": "Nextjs Tailwind Course Landing Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/NextJS-Tailwind-Course-Landing-Page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/NextJS-Tailwind-Course-Landing-Page/", + "description": "Nextjs Tailwind Course Landing Page" + }, + { + "id": "th_si_education", + "name": "Si Education", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/si-education", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/si-education/", + "description": "Si Educational Free NextJs Landing Page Template" + }, + { + "id": "th_learnhub", + "name": "Learnhub", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/learnhub", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/learnhub/", + "description": "LearnHub- Free eLearning Bootstrap Educational Website Template" + }, + { + "id": "th_purdue", + "name": "Purdue", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/purdue", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/purdue/", + "description": "Purdue – Education & Online Course HTML Template" + }, + { + "id": "th_eduleb", + "name": "Eduleb", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eduleb", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eduleb/", + "description": "Eduleb - Education HTML Template" + }, + { + "id": "da_above_educational_bootstrap_responsive_template", + "name": "Above Educational Bootstrap Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "above-educational-bootstrap-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/above-educational-bootstrap-responsive-template/", + "description": "Above Educational Bootstrap Responsive Template" + }, + { + "id": "da_b_school_free_education_html5_website_template", + "name": "B School Free Education Html5 Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "b-school-free-education-html5-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/b-school-free-education-html5-website-template/", + "description": "B School Free Education Html5 Website Template" + }, + { + "id": "da_learn_educational_free_responsive_web_template", + "name": "Learn Educational Free Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "learn-educational-free-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/learn-educational-free-responsive-web-template/", + "description": "Learn Educational Free Responsive Web Template" + }, + { + "id": "da_mentor_free_html5_bootstrap_coming_soon_template", + "name": "Mentor Free Html5 Bootstrap Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "mentor-free-html5-bootstrap-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/mentor-free-html5-bootstrap-coming-soon-template/", + "description": "Mentor Free Html5 Bootstrap Coming Soon Template" + }, + { + "id": "da_school_educational_html5_template", + "name": "School Educational Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "school-educational-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/school-educational-html5-template/", + "description": "School Educational Html5 Template" + }, + { + "id": "da_victory_educational_institution_free_html5_bootstrap_temp", + "name": "Victory Educational Institution Free Html5 Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "victory-educational-institution-free-html5-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/victory-educational-institution-free-html5-bootstrap-template/", + "description": "Victory Educational Institution Free Html5 Bootstrap Template" + } + ] + }, + { + "id": "portfolio", + "name": "Портфолио и креатив", + "icon": "palette", + "templates": [ + { + "id": "h5up_astral", + "name": "Astral", + "source": "html5up", + "description": "Портфолио с галереей", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "astral", + "preview_url": "https://html5up.net/astral/" + }, + { + "id": "h5up_ethereal", + "name": "Ethereal", + "source": "html5up", + "description": "Портфолио с эффектами", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "ethereal", + "preview_url": "https://html5up.net/ethereal/" + }, + { + "id": "h5up_forty", + "name": "Forty", + "source": "html5up", + "description": "Минималистичное портфолио", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "forty", + "preview_url": "https://html5up.net/forty/" + }, + { + "id": "h5up_fractal", + "name": "Fractal", + "source": "html5up", + "description": "Портфолио с геометрическим дизайном", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "fractal", + "preview_url": "https://html5up.net/fractal/" + }, + { + "id": "h5up_halcyonic", + "name": "Halcyonic", + "source": "html5up", + "description": "Яркое портфолио", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "halcyonic", + "preview_url": "https://html5up.net/halcyonic/" + }, + { + "id": "h5up_highlights", + "name": "Highlights", + "source": "html5up", + "description": "Портфолио с выделением работ", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "highlights", + "preview_url": "https://html5up.net/highlights/" + }, + { + "id": "h5up_lens", + "name": "Lens", + "source": "html5up", + "description": "Фотографический портал", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "lens", + "preview_url": "https://html5up.net/lens/" + }, + { + "id": "h5up_paradigm_shift", + "name": "Paradigm Shift", + "source": "html5up", + "description": "Современное портфолио", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "paradigm-shift", + "preview_url": "https://html5up.net/paradigm-shift/" + }, + { + "id": "h5up_phantom", + "name": "Phantom", + "source": "html5up", + "description": "Портфолио с темной темой", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "phantom", + "preview_url": "https://html5up.net/phantom/" + }, + { + "id": "h5up_photon", + "name": "Photon", + "source": "html5up", + "description": "Фото-портфолио", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "photon", + "preview_url": "https://html5up.net/photon/" + }, + { + "id": "h5up_strata", + "name": "Strata", + "source": "html5up", + "description": "Компактное портфолио", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "strata", + "preview_url": "https://html5up.net/strata/" + }, + { + "id": "h5up_striped", + "name": "Striped", + "source": "html5up", + "description": "Портфолио в полоску", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "striped", + "preview_url": "https://html5up.net/striped/" + }, + { + "id": "lz_iclick_photography", + "name": "iClick Photography", + "source": "learning-zone", + "description": "Портфолио фотографа", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "iclick-photography-bootstrap-free-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/iclick-photography-bootstrap-free-website-template/" + }, + { + "id": "lz_amaze_photography", + "name": "Amaze Photography", + "source": "learning-zone", + "description": "Студия фотографии", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "amaze-photography-bootstrap-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/amaze-photography-bootstrap-html5-template/" + }, + { + "id": "lz_html5_portfolio", + "name": "HTML5 Portfolio", + "source": "learning-zone", + "description": "Универсальный портфолио", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "html5-portfolio", + "preview_url": "https://learning-zone.github.io/website-templates/html5-portfolio/" + }, + { + "id": "lz_wow_portfolio", + "name": "WOW Portfolio", + "source": "learning-zone", + "description": "Многофункциональное портфолио", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "wow-portfolio-multi-purpose-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/wow-portfolio-multi-purpose-html5-template/" + }, + { + "id": "lz_me_portfolio", + "name": "ME Portfolio", + "source": "learning-zone", + "description": "Личный портфолио и резюме", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "me-resume-personal-portfolio-responsive-template", + "preview_url": "https://learning-zone.github.io/website-templates/me-resume-personal-portfolio-responsive-template/" + }, + { + "id": "lz_johndoe_portfolio", + "name": "JohnDoe Portfolio", + "source": "learning-zone", + "description": "Портфолио с резюме", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "johndoe-portfolio-resume-bootstrap-template", + "preview_url": "https://learning-zone.github.io/website-templates/johndoe-portfolio-resume-bootstrap-template/" + }, + { + "id": "lz_free_portfolio_sam", + "name": "Free Portfolio", + "source": "learning-zone", + "description": "Адаптивное портфолио", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "free-portfolio-html5-responsive-website-sam", + "preview_url": "https://learning-zone.github.io/website-templates/free-portfolio-html5-responsive-website-sam/" + }, + { + "id": "h5up_read_only", + "name": "Read Only", + "source": "html5up", + "description": "Портфолио творческого агентства", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "read-only", + "preview_url": "https://html5up.net/read-only/" + }, + { + "id": "h5up_future", + "name": "Future", + "source": "html5up", + "description": "Сайт креативного студии", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "future-imperfect", + "preview_url": "https://html5up.net/future-imperfect/" + }, + { + "id": "sb_creative", + "name": "StartBootstrap Creative", + "source": "startbootstrap", + "description": "Креативное агентство", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-creative", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-creative/" + }, + { + "id": "sb_freelancer", + "name": "StartBootstrap Freelancer", + "source": "startbootstrap", + "description": "Портфолио фрилансера", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-freelancer", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-freelancer/" + }, + { + "id": "th_the_portfolio", + "name": "The Portfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/the_portfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/the_portfolio/", + "description": "HTML 5 Responsive Personal Website Template" + }, + { + "id": "th_material_dashboard_react", + "name": "Material Dashboard React", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-dashboard-react", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-dashboard-react/", + "description": "React version of Material Dashboard by Creative Tim" + }, + { + "id": "th_johndoe", + "name": "Johndoe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/JohnDoe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/JohnDoe/", + "description": "FREE One Page Responsive Portfolio Template designed with Bootstrap3, HTML5, CSS3 and jQuery." + }, + { + "id": "th_profile", + "name": "Profile", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/profile", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/profile/", + "description": "Resume Bootstrap Template Download Free" + }, + { + "id": "th_darkjoe", + "name": "Darkjoe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/DarkJoe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/DarkJoe/", + "description": "Dark Joe - Responsive One Page Personal Website Template with Bootstrap 3" + }, + { + "id": "th_developer", + "name": "Developer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Developer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Developer/", + "description": "Developer - Responsive Personal Website Template" + }, + { + "id": "th_photographer", + "name": "Photographer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Photographer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Photographer/", + "description": "Photographer - A Responsive One Page Photography Website Template with Bootstrap 3" + }, + { + "id": "th_resume_bootstrap4", + "name": "Resume Bootstrap4", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/resume-bootstrap4", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/resume-bootstrap4/", + "description": "A Bootstrap 4 resume/CV theme created by Start Bootstrap" + }, + { + "id": "th_resume_2", + "name": "Resume 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/resume-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/resume-2/", + "description": "Resume 2" + }, + { + "id": "th_creative_2", + "name": "Creative 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/creative-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/creative-2/", + "description": "Creative 2" + }, + { + "id": "th_photographer_2", + "name": "Photographer 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photographer-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photographer-2/", + "description": "Photographer 2" + }, + { + "id": "th_moonlight", + "name": "Moonlight", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/moonlight", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/moonlight/", + "description": "One page template for building a photography or portfolio site." + }, + { + "id": "th_slides_portfolio", + "name": "Slides Portfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/slides-portfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/slides-portfolio/", + "description": "Slides Portfolio" + }, + { + "id": "th_personalportfolio", + "name": "Personalportfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/personalportfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/personalportfolio/", + "description": "Personalportfolio" + }, + { + "id": "th_aircv", + "name": "Aircv", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Aircv", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Aircv/", + "description": "Professional CV Parallax Template" + }, + { + "id": "th_myportfolio", + "name": "Myportfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/myportfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/myportfolio/", + "description": "Myportfolio" + }, + { + "id": "th_personal_portfolio", + "name": "Personal Portfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/personal-portfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/personal-portfolio/", + "description": "Personal Portfolio" + }, + { + "id": "th_albedo_template", + "name": "Albedo Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Albedo-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Albedo-Template/", + "description": "Albedo Free HTML Template Powered With Bootstrap 4 for Designer Portfolio" + }, + { + "id": "th_ethereal", + "name": "Ethereal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ethereal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ethereal/", + "description": "Personal, Portfolio, and Photography HTML Template" + }, + { + "id": "th_porta1", + "name": "Porta1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/porta1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/porta1/", + "description": "Porta is a Bootstrap4 minimal portfolio template by CurlyArts, absolutely free for download !" + }, + { + "id": "th_creative", + "name": "Creative", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Creative", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Creative/", + "description": "A Responsive Template for Creative works" + }, + { + "id": "th_now_ui_kit", + "name": "Now Ui Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/now-ui-kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/now-ui-kit/", + "description": "Now UI Kit Bootstrap 4 - Designed by Invision. Coded by Creative Tim. Live Demo" + }, + { + "id": "th_portfolio", + "name": "Portfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/portfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/portfolio/", + "description": "Portfolio" + }, + { + "id": "th_creative_bundle_2024", + "name": "Creative Bundle 2024", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/creative-bundle-2024", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/creative-bundle-2024/", + "description": "Creative Bundle 2024" + }, + { + "id": "th_personal_website", + "name": "Personal Website", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Personal-Website", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Personal-Website/", + "description": "My website portfolio" + }, + { + "id": "th_material_kit_react", + "name": "Material Kit React", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-kit-react", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-kit-react/", + "description": "Material Kit React free and open source by Creative Tim & Distributed by Themewagon." + }, + { + "id": "th_pigra", + "name": "Pigra", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Pigra", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Pigra/", + "description": "Free Bootstrap 5 Portfolio Website Template" + }, + { + "id": "th_joyseno", + "name": "Joyseno", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Joyseno", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Joyseno/", + "description": "Free Responsive Portfolio Website Template" + }, + { + "id": "th_hudson", + "name": "Hudson", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Hudson", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Hudson/", + "description": "Free HTML Portfolio Website Template" + }, + { + "id": "th_ethos", + "name": "Ethos", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Ethos", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Ethos/", + "description": "Free Personal Website Template" + }, + { + "id": "th_archi_new", + "name": "Archi New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/archi-new", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/archi-new/", + "description": "Free Architecture Portfolio Template" + }, + { + "id": "th_jessica", + "name": "Jessica", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Jessica", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Jessica/", + "description": "Free Bootstrap 5 Portfolio Website Template" + }, + { + "id": "th_iportfolio", + "name": "Iportfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/iPortfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/iPortfolio/", + "description": "Free Bootstrap 5 Portfolio Website Template" + }, + { + "id": "th_myresume", + "name": "Myresume", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MyResume", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MyResume/", + "description": "Free Bootstrap 5 Resume Website Template" + }, + { + "id": "th_photofolio", + "name": "Photofolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/PhotoFolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/PhotoFolio/", + "description": "Free Bootstrap 5 Portfolio Website Template" + }, + { + "id": "th_presento", + "name": "Presento", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Presento", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Presento/", + "description": "Free Bootstrap 5 Portfolio Template" + }, + { + "id": "th_next_js_tailwind_css_portfolio_template", + "name": "Next.Js Tailwind Css Portfolio Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Next.js-Tailwind-CSS-Portfolio-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Next.js-Tailwind-CSS-Portfolio-Template/", + "description": "Next.Js Tailwind Css Portfolio Template" + }, + { + "id": "th_resume_nextjs", + "name": "Resume Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Resume-Nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Resume-Nextjs/", + "description": "Resume Nextjs" + }, + { + "id": "th_typefolio_nextjs", + "name": "Typefolio Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/typefolio-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/typefolio-nextjs/", + "description": "Typefolio – Simple Portfolio Template" + }, + { + "id": "th_ryan", + "name": "Ryan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ryan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ryan/", + "description": "Ryan - Next JS Portfolio Template" + }, + { + "id": "da_3_col_portfolio", + "name": "3 Col Portfolio", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "3-col-portfolio", + "preview_url": "https://dawidolko.github.io/Website-Templates/3-col-portfolio/", + "description": "3 Col Portfolio" + }, + { + "id": "da_free_portfolio_html5_responsive_website_sam", + "name": "Free Portfolio Html5 Responsive Website Sam", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "free-portfolio-html5-responsive-website-sam", + "preview_url": "https://dawidolko.github.io/Website-Templates/free-portfolio-html5-responsive-website-sam/", + "description": "Free Portfolio Html5 Responsive Website Sam" + }, + { + "id": "da_html5_portfolio", + "name": "Html5 Portfolio", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "html5-portfolio", + "preview_url": "https://dawidolko.github.io/Website-Templates/html5-portfolio/", + "description": "Html5 Portfolio" + }, + { + "id": "da_iam_html5_responsive_portfolio_resume_template", + "name": "Iam Html5 Responsive Portfolio Resume Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "iam-html5-responsive-portfolio-resume-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/iam-html5-responsive-portfolio-resume-template/", + "description": "Iam Html5 Responsive Portfolio Resume Template" + }, + { + "id": "da_john_bootstrap_one_page_html5_free_resume_template", + "name": "John Bootstrap One Page Html5 Free Resume Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "john-bootstrap-one-page-html5-free-resume-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/john-bootstrap-one-page-html5-free-resume-template/", + "description": "John Bootstrap One Page Html5 Free Resume Template" + }, + { + "id": "da_johndoe_portfolio_resume_bootstrap_template", + "name": "Johndoe Portfolio Resume Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "johndoe-portfolio-resume-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/johndoe-portfolio-resume-bootstrap-template/", + "description": "Johndoe Portfolio Resume Bootstrap Template" + }, + { + "id": "da_me_resume_personal_portfolio_responsive_template", + "name": "Me Resume Personal Portfolio Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "me-resume-personal-portfolio-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/me-resume-personal-portfolio-responsive-template/", + "description": "Me Resume Personal Portfolio Responsive Template" + }, + { + "id": "da_my_portfolio_two", + "name": "My Portfolio Two", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "my-portfolio-two", + "preview_url": "https://dawidolko.github.io/Website-Templates/my-portfolio-two/", + "description": "My Portfolio Two" + }, + { + "id": "da_portfolio_item", + "name": "Portfolio Item", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "portfolio-item", + "preview_url": "https://dawidolko.github.io/Website-Templates/portfolio-item/", + "description": "Portfolio Item" + }, + { + "id": "da_startbootstrap_freelancer_1_0_2", + "name": "Freelancer 1.0.2", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "startbootstrap-freelancer-1.0.2", + "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-freelancer-1.0.2/", + "description": "Freelancer 1.0.2" + }, + { + "id": "da_startbootstrap_stylish_portfolio_1_0_2", + "name": "Stylish Portfolio 1.0.2", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "startbootstrap-stylish-portfolio-1.0.2", + "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-stylish-portfolio-1.0.2/", + "description": "Stylish Portfolio 1.0.2" + }, + { + "id": "da_stylish_portfolio", + "name": "Stylish Portfolio", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "stylish-portfolio", + "preview_url": "https://dawidolko.github.io/Website-Templates/stylish-portfolio/", + "description": "Stylish Portfolio" + }, + { + "id": "da_wow_portfolio_multi_purpose_html5_template", + "name": "Wow Portfolio Multi Purpose Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "wow-portfolio-multi-purpose-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/wow-portfolio-multi-purpose-html5-template/", + "description": "Wow Portfolio Multi Purpose Html5 Template" + } + ] + }, + { + "id": "realestate", + "name": "Недвижимость и интерьер", + "icon": "home", + "templates": [ + { + "id": "lz_aerosky_realestate", + "name": "Aerosky Real Estate", + "source": "learning-zone", + "description": "Агентство недвижимости", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "aerosky-real-estate-html-responsive-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/aerosky-real-estate-html-responsive-website-template/" + }, + { + "id": "lz_bootstrap_realestate", + "name": "Bootstrap Real Estate", + "source": "learning-zone", + "description": "Портал продажи недвижимости", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "free-bootstrap-template-real-estate-my-home", + "preview_url": "https://learning-zone.github.io/website-templates/free-bootstrap-template-real-estate-my-home/" + }, + { + "id": "lz_park_city_realestate", + "name": "Park City Real Estate", + "source": "learning-zone", + "description": "Недвижимость в городе", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "park-city-bootstrap-html-real-estate-responsive-template", + "preview_url": "https://learning-zone.github.io/website-templates/park-city-bootstrap-html-real-estate-responsive-template/" + }, + { + "id": "lz_icon_realestate", + "name": "Icon Real Estate", + "source": "learning-zone", + "description": "Застройщики недвижимости", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "icon-real-estate-developers-free-responsive-html-template", + "preview_url": "https://learning-zone.github.io/website-templates/icon-real-estate-developers-free-responsive-html-template/" + }, + { + "id": "lz_real_estate_builders", + "name": "Real Estate Builders", + "source": "learning-zone", + "description": "Строители и девелоперы", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "real-estate-builders-free-responsive-website-templates-adesign", + "preview_url": "https://learning-zone.github.io/website-templates/real-estate-builders-free-responsive-website-templates-adesign/" + }, + { + "id": "h5up_landed", + "name": "Landed", + "source": "html5up", + "description": "Сайт дизайн-студии", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "landed", + "preview_url": "https://html5up.net/landed/" + }, + { + "id": "h5up_strongly_typed", + "name": "Strongly Typed", + "source": "html5up", + "description": "Портфолио типографики", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "strongly-typed", + "preview_url": "https://html5up.net/strongly-typed/" + }, + { + "id": "lz_ideal_interior", + "name": "Ideal Interior Design", + "source": "learning-zone", + "description": "Дизайн интерьера", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "ideal-interior-design-free-bootstrap-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/ideal-interior-design-free-bootstrap-website-template/" + }, + { + "id": "lz_smart_interior", + "name": "Smart Interior Designs", + "source": "learning-zone", + "description": "Интерьерный проект", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "smart-interior-designs-html5-bootstrap-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/smart-interior-designs-html5-bootstrap-web-template/" + }, + { + "id": "lz_relax_interior", + "name": "Relax Interior", + "source": "learning-zone", + "description": "Дизайн жилых помещений", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "relax-interior-free-bootstrap-responsive-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/relax-interior-free-bootstrap-responsive-website-template/" + }, + { + "id": "th_property", + "name": "Property", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/property", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/property/", + "description": "Property" + }, + { + "id": "th_shionhouse", + "name": "Shionhouse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/shionhouse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/shionhouse/", + "description": "Shionhouse" + }, + { + "id": "th_datawarehouse", + "name": "Datawarehouse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dataWarehouse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dataWarehouse/", + "description": "Datawarehouse" + }, + { + "id": "th_homebuilder", + "name": "Homebuilder", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/homebuilder", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/homebuilder/", + "description": "Homebuilder" + }, + { + "id": "th_interior", + "name": "Interior", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/interior", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/interior/", + "description": "Interior" + }, + { + "id": "th_theinterior", + "name": "Theinterior", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/theinterior", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/theinterior/", + "description": "Theinterior" + }, + { + "id": "th_warehouse", + "name": "Warehouse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/warehouse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/warehouse/", + "description": "Warehouse" + }, + { + "id": "th_interior_design", + "name": "Interior Design", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/interior-design", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/interior-design/", + "description": "Interior Design" + }, + { + "id": "th_delux_interior", + "name": "Delux Interior", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/delux-interior", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/delux-interior/", + "description": "Delux Interior" + }, + { + "id": "th_upconstruction", + "name": "Upconstruction", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/UpConstruction", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/UpConstruction/", + "description": "Upconstruction" + }, + { + "id": "th_teahouse", + "name": "Teahouse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/TeaHouse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/TeaHouse/", + "description": "Teahouse" + }, + { + "id": "th_vaso", + "name": "Vaso", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vaso", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vaso/", + "description": "Free bootstrap 5 interior Decore Website Template" + }, + { + "id": "th_property_nextjs", + "name": "Property Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/property-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/property-nextjs/", + "description": "Property Nextjs" + }, + { + "id": "da_ideal_interior_design_free_bootstrap_website_template", + "name": "Ideal Interior Design Free Bootstrap Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "ideal-interior-design-free-bootstrap-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/ideal-interior-design-free-bootstrap-website-template/", + "description": "Ideal Interior Design Free Bootstrap Website Template" + }, + { + "id": "da_real_estate_builders_free_responsive_website_templates_ad", + "name": "Real Estate Builders Free Responsive Website Templates Adesign", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "real-estate-builders-free-responsive-website-templates-adesign", + "preview_url": "https://dawidolko.github.io/Website-Templates/real-estate-builders-free-responsive-website-templates-adesign/", + "description": "Real Estate Builders Free Responsive Website Templates Adesign" + }, + { + "id": "da_relax_interior_free_bootstrap_responsive_website_template", + "name": "Relax Interior Free Bootstrap Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "relax-interior-free-bootstrap-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/relax-interior-free-bootstrap-responsive-website-template/", + "description": "Relax Interior Free Bootstrap Responsive Website Template" + }, + { + "id": "da_styleinn_bootstrap_interior_design_website_template", + "name": "Styleinn Bootstrap Interior Design Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "styleinn-bootstrap-interior-design-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/styleinn-bootstrap-interior-design-website-template/", + "description": "Styleinn Bootstrap Interior Design Website Template" + } + ] + }, + { + "id": "restaurant", + "name": "Рестораны и еда", + "icon": "utensils", + "templates": [ + { + "id": "lz_coffee_shop", + "name": "Coffee Shop", + "source": "learning-zone", + "description": "Сайт кофейни", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "coffee-shop-free-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/coffee-shop-free-html5-template/" + }, + { + "id": "lz_golden_hotel_restaurant", + "name": "Golden Hotel Restaurant", + "source": "learning-zone", + "description": "Ресторан отеля", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "golden-hotel-free-html5-bootstrap-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/golden-hotel-free-html5-bootstrap-web-template/" + }, + { + "id": "lz_bestro_restaurant", + "name": "Bestro Restaurant", + "source": "learning-zone", + "description": "Шаблон ресторана на Bootstrap", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "bestro-restaurant-bootstrap-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/bestro-restaurant-bootstrap-html5-template/" + }, + { + "id": "lz_eat_restaurant", + "name": "Eat Restaurant", + "source": "learning-zone", + "description": "Сайт ресторана с меню", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "eat-restaurant-bootstrap-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/eat-restaurant-bootstrap-html5-template/" + }, + { + "id": "th_restaurant_2", + "name": "Restaurant 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/restaurant-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/restaurant-2/", + "description": "Restaurant 2" + }, + { + "id": "th_restaurant_html_template", + "name": "Restaurant Html Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/restaurant-html-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/restaurant-html-template/", + "description": "Restaurant Html Template" + }, + { + "id": "th_pizza", + "name": "Pizza", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pizza", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pizza/", + "description": "Pizza" + }, + { + "id": "th_foodee", + "name": "Foodee", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foodee", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foodee/", + "description": "Free Restaurant Template Download" + }, + { + "id": "th_vegefoods", + "name": "Vegefoods", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vegefoods", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vegefoods/", + "description": "Vegefoods" + }, + { + "id": "th_coffee", + "name": "Coffee", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/coffee", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/coffee/", + "description": "Coffee" + }, + { + "id": "th_meatking_1", + "name": "Meatking 1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MeatKing-1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MeatKing-1/", + "description": "Meatking - A Restaurant Website Design Template with Bootstrap 3" + }, + { + "id": "th_restaurantly", + "name": "Restaurantly", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/restaurantly", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/restaurantly/", + "description": "Restaurantly" + }, + { + "id": "th_foody2", + "name": "Foody2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foody2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foody2/", + "description": "Foody2" + }, + { + "id": "th_foodwagon", + "name": "Foodwagon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foodwagon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foodwagon/", + "description": "Foodwagon" + }, + { + "id": "th_delfood", + "name": "Delfood", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/delfood", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/delfood/", + "description": "Delfood" + }, + { + "id": "th_coffee1", + "name": "Coffee1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/coffee1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/coffee1/", + "description": "Coffee1" + }, + { + "id": "th_klassy_cafe", + "name": "Klassy Cafe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/klassy-cafe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/klassy-cafe/", + "description": "Klassy Cafe" + }, + { + "id": "th_barberz", + "name": "Barberz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/barberz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/barberz/", + "description": "Barberz" + }, + { + "id": "th_food_funday", + "name": "Food Funday", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/food-funday", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/food-funday/", + "description": "Food Funday" + }, + { + "id": "th_grandcoffee", + "name": "Grandcoffee", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/grandcoffee", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/grandcoffee/", + "description": "Grandcoffee" + }, + { + "id": "th_taste", + "name": "Taste", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/taste", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/taste/", + "description": "Bootstrap 4 restaurant template with menu creating option." + }, + { + "id": "th_foodeiblog", + "name": "Foodeiblog", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foodeiblog", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foodeiblog/", + "description": "Foodeiblog" + }, + { + "id": "th_allfood", + "name": "Allfood", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/allfood", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/allfood/", + "description": "Allfood" + }, + { + "id": "th_touche", + "name": "Touche", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/touche", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/touche/", + "description": "Free restaurant template that has a eye-soothing design and parallax effects" + }, + { + "id": "th_tasty_recipes", + "name": "Tasty Recipes", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tasty-recipes", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tasty-recipes/", + "description": "Tasty Recipes" + }, + { + "id": "th_foodfun", + "name": "Foodfun", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foodfun", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foodfun/", + "description": "Foodfun" + }, + { + "id": "th_mamma_s_kitchen", + "name": "Mamma S Kitchen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Mamma-s-Kitchen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Mamma-s-Kitchen/", + "description": "A fully responsive restaurant template, developed by bootstrap 3" + }, + { + "id": "th_barberx", + "name": "Barberx", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/BarberX", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/BarberX/", + "description": "Barberx" + }, + { + "id": "th_foody", + "name": "Foody", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foody", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foody/", + "description": "Foody" + }, + { + "id": "th_foodque", + "name": "Foodque", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foodque", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foodque/", + "description": "A restaurant website template with creative design and fluid layout." + }, + { + "id": "th_meatking", + "name": "Meatking", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MeatKing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MeatKing/", + "description": "Meatking - A Restaurant Website Design Template with Bootstrap 3" + }, + { + "id": "th_restaurant", + "name": "Restaurant", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/restaurant", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/restaurant/", + "description": "Free Tailwind CSS Restaurant Landing Page" + }, + { + "id": "da_bestro_restaurant_bootstrap_html5_template", + "name": "Bestro Restaurant Bootstrap Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "bestro-restaurant-bootstrap-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/bestro-restaurant-bootstrap-html5-template/", + "description": "Bestro Restaurant Bootstrap Html5 Template" + }, + { + "id": "da_eat_restaurant_bootstrap_html5_template", + "name": "Eat Restaurant Bootstrap Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "eat-restaurant-bootstrap-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/eat-restaurant-bootstrap-html5-template/", + "description": "Eat Restaurant Bootstrap Html5 Template" + }, + { + "id": "da_free_bootstrap_template_restaurant_website_treehut", + "name": "Free Bootstrap Template Restaurant Website Treehut", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "free-bootstrap-template-restaurant-website-treehut", + "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-restaurant-website-treehut/", + "description": "Free Bootstrap Template Restaurant Website Treehut" + }, + { + "id": "da_simple_sidebar", + "name": "Simple Sidebar", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "simple-sidebar", + "preview_url": "https://dawidolko.github.io/Website-Templates/simple-sidebar/", + "description": "Simple Sidebar" + } + ] + }, + { + "id": "landing", + "name": "Лендинги", + "icon": "rocket", + "templates": [ + { + "id": "h5up_big_picture", + "name": "Big Picture", + "source": "html5up", + "description": "Одностраничный лендинг с полноэкранными изображениями", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "big-picture", + "preview_url": "https://html5up.net/big-picture/" + }, + { + "id": "h5up_eventually", + "name": "Eventually", + "source": "html5up", + "description": "Лендинг со счётчиком запуска", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "eventually", + "preview_url": "https://html5up.net/eventually/" + }, + { + "id": "h5up_escape_velocity", + "name": "Escape Velocity", + "source": "html5up", + "description": "Креативный лендинг с необычным дизайном", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "escape-velocity", + "preview_url": "https://html5up.net/escape-velocity/" + }, + { + "id": "lz_mobile_app_landing", + "name": "Mobile App Landing Page", + "source": "learning-zone", + "description": "Лендинг для мобильного приложения", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "mobile-app-free-one-page-responsive-html5-landing-page", + "preview_url": "https://learning-zone.github.io/website-templates/mobile-app-free-one-page-responsive-html5-landing-page/" + }, + { + "id": "lz_smartapp_landing", + "name": "SmartApp Landing", + "source": "learning-zone", + "description": "Современный лендинг приложения", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "smartapp-free-html5-landing-page", + "preview_url": "https://learning-zone.github.io/website-templates/smartapp-free-html5-landing-page/" + }, + { + "id": "lz_brand_app_landing", + "name": "Brand App Landing", + "source": "learning-zone", + "description": "Лендинг для брендового приложения", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "brand-html5-app-landing-page-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/brand-html5-app-landing-page-responsive-web-template/" + }, + { + "id": "lz_line_app_landing", + "name": "Line App Landing", + "source": "learning-zone", + "description": "Минималистичный лендинг приложения", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "line-free-app-landing-page-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/line-free-app-landing-page-responsive-web-template/" + }, + { + "id": "sb_landing_page", + "name": "StartBootstrap Landing Page", + "source": "startbootstrap", + "description": "Универсальный адаптивный лендинг", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-landing-page", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-landing-page/" + }, + { + "id": "th_imminent", + "name": "Imminent", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Imminent", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Imminent/", + "description": "Free 3D Parallax Responsive Coming Soon Template" + }, + { + "id": "th_flameonepage", + "name": "Flameonepage", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/flameonepage", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/flameonepage/", + "description": "Flameonepage" + }, + { + "id": "th_layla", + "name": "Layla", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/layla", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/layla/", + "description": "Coming Soon Template" + }, + { + "id": "th_awesome", + "name": "Awesome", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Awesome", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Awesome/", + "description": "Awesome - A Free Responsive Coming Soon Template" + }, + { + "id": "th_deskapp2", + "name": "Deskapp2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/deskapp2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/deskapp2/", + "description": "Deskapp2" + }, + { + "id": "th_polo", + "name": "Polo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/polo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/polo/", + "description": "POLO - Responsive App Landing Page Template with Bootstrap 3" + }, + { + "id": "th_brandi_onepage_html5_business_template", + "name": "Brandi Onepage Html5 Business Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/brandi-Onepage-HTML5-Business-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/brandi-Onepage-HTML5-Business-Template/", + "description": "Brandi-Free-One-Page-Responsive-HTML5-Business-Template" + }, + { + "id": "th_mobapp", + "name": "Mobapp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mobapp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mobapp/", + "description": "MobApp is a Bootstrap 4 app landing template to make your landing page creation more comfortable. It's very bright with colors and ready-to-go to craft a website with simple steps." + }, + { + "id": "th_fitapp", + "name": "Fitapp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/FitApp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/FitApp/", + "description": "Fitapp" + }, + { + "id": "th_coming2live", + "name": "Coming2Live", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/coming2live", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/coming2live/", + "description": "10 demos available with this free coming soon website template" + }, + { + "id": "th_small_apps", + "name": "Small Apps", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/small-apps", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/small-apps/", + "description": "Small Apps" + }, + { + "id": "th_count", + "name": "Count", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/count", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/count/", + "description": "Free coming soon website template holding three demo variation. Built with Bootstrap. Download from the link now." + }, + { + "id": "th_wedding", + "name": "Wedding", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wedding", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wedding/", + "description": "Wedding is a free HTML website template for wedding and events with countdown timer and engaging design layout" + }, + { + "id": "th_applab_2", + "name": "Applab 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/applab_2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/applab_2/", + "description": "Applab 2" + }, + { + "id": "th_append", + "name": "Append", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/append", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/append/", + "description": "Append" + }, + { + "id": "th_season", + "name": "Season", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Season", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Season/", + "description": "Coming Soon Responsive HTML Template" + }, + { + "id": "th_slides_animated_landing_page", + "name": "Slides Animated Landing Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/slides-animated-landing-page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/slides-animated-landing-page/", + "description": "Slides Animated Landing Page" + }, + { + "id": "th_lucy", + "name": "Lucy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lucy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lucy/", + "description": "Best Free Responsive Bootstrap App Landing Page Lucy" + }, + { + "id": "th_woolanding", + "name": "Woolanding", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wooLanding", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wooLanding/", + "description": "Woolanding" + }, + { + "id": "th_appru", + "name": "Appru", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/appru", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/appru/", + "description": "Appru" + }, + { + "id": "th_appco", + "name": "Appco", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/appco", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/appco/", + "description": "Appco" + }, + { + "id": "th_evento", + "name": "Evento", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Evento", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Evento/", + "description": "A Function Landing Page " + }, + { + "id": "th_lazyfox", + "name": "Lazyfox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Lazyfox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Lazyfox/", + "description": "HTML5 Single page landing template" + }, + { + "id": "th_avilon", + "name": "Avilon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/avilon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/avilon/", + "description": "Free landing page template made with Bootstrap 4." + }, + { + "id": "th_codrops_scribbler", + "name": "Codrops Scribbler", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/codrops-scribbler", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/codrops-scribbler/", + "description": "A responsive HTML template for coding projects with a clean, user friendly design. Crafted with the latest web technologies, the template is suitable for landing pages and documentations." + }, + { + "id": "th_rain", + "name": "Rain", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Rain", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Rain/", + "description": "Rain - Free Responsive OnePage App Landing Page Template" + }, + { + "id": "th_slides_horizontal_scroll_landing_page", + "name": "Slides Horizontal Scroll Landing Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/slides-horizontal-scroll-landing-page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/slides-horizontal-scroll-landing-page/", + "description": "Slides Horizontal Scroll Landing Page" + }, + { + "id": "th_snappy", + "name": "Snappy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/snappy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/snappy/", + "description": "Snappy - A HTML5 photography website template" + }, + { + "id": "th_appetizer", + "name": "Appetizer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/appetizer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/appetizer/", + "description": "Appetizer" + }, + { + "id": "th_applab", + "name": "Applab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/applab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/applab/", + "description": "Applab" + }, + { + "id": "th_apex_app", + "name": "Apex App", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/apex_app", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/apex_app/", + "description": "Apex App" + }, + { + "id": "th_metronic_one_page_2", + "name": "Metronic One Page 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Metronic-One-Page-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Metronic-One-Page-2/", + "description": "Metronic One Page 2" + }, + { + "id": "th_webapp", + "name": "Webapp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/webapp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/webapp/", + "description": "Webapp" + }, + { + "id": "th_slides_app_landing_page", + "name": "Slides App Landing Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/slides-app-landing-page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/slides-app-landing-page/", + "description": "Slides App Landing Page" + }, + { + "id": "th_appli", + "name": "Appli", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/appli", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/appli/", + "description": "Appli" + }, + { + "id": "th_landing_a", + "name": "Landing A", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/landing-a", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/landing-a/", + "description": "Landing A" + }, + { + "id": "th_nova", + "name": "Nova", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Nova", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Nova/", + "description": "Free one page HTML template for apps showcasing" + }, + { + "id": "th_app", + "name": "App", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/app", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/app/", + "description": "App" + }, + { + "id": "th_lifetrackr", + "name": "Lifetrackr", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lifetrackr", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lifetrackr/", + "description": "Responsive Free App Landing Page Template " + }, + { + "id": "th_appley", + "name": "Appley", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/appley", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/appley/", + "description": "Appley" + }, + { + "id": "th_proapp", + "name": "Proapp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/proapp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/proapp/", + "description": "Proapp" + }, + { + "id": "th_mobiapp", + "name": "Mobiapp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mobiapp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mobiapp/", + "description": "Mobiapp" + }, + { + "id": "th_metronic_one_page", + "name": "Metronic One Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Metronic-One-Page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Metronic-One-Page/", + "description": "Metronic One Page" + }, + { + "id": "th_unapp", + "name": "Unapp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/unapp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/unapp/", + "description": "Unapp" + }, + { + "id": "th_soft_landing", + "name": "Soft Landing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/soft-landing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/soft-landing/", + "description": "Soft Landing" + }, + { + "id": "th_mobile_app", + "name": "Mobile App", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mobile-app", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mobile-app/", + "description": "Mobile App" + }, + { + "id": "th_applus", + "name": "Applus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/applus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/applus/", + "description": "App Plus Responsive One Page Template" + }, + { + "id": "th_laslesvpn", + "name": "Laslesvpn", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/LaslesVPN", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/LaslesVPN/", + "description": "Bootstrap 5 Landing Page Template" + }, + { + "id": "th_saascandy", + "name": "Saascandy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/SaasCandy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/SaasCandy/", + "description": "Saascandy" + }, + { + "id": "th_react_app_template", + "name": "React App Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/react-app-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/react-app-template/", + "description": "An ideal pre-configured create-react-app template for your next ReactJS Project." + }, + { + "id": "th_imminent_new", + "name": "Imminent New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/imminent-new", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/imminent-new/", + "description": "Free Coming Soon Page Template" + }, + { + "id": "th_rentiz", + "name": "Rentiz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rentiz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rentiz/", + "description": "Free HTML Landing Page Template" + }, + { + "id": "th_append_new", + "name": "Append New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Append-New", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Append-New/", + "description": "Free Bootstrap Website Template" + }, + { + "id": "th_bootslander", + "name": "Bootslander", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Bootslander", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Bootslander/", + "description": "Free Bootstrap 5 Landing Page Template" + }, + { + "id": "th_ilanding", + "name": "Ilanding", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/iLanding", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/iLanding/", + "description": "Free Bootstrap 5 Landing Page Template" + }, + { + "id": "th_onepage", + "name": "Onepage", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/OnePage", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/OnePage/", + "description": "Free Booststrap 5 Website Template" + }, + { + "id": "th_desgy", + "name": "Desgy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Desgy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Desgy/", + "description": "Free Tailwind-Next.js Landing Page Template" + }, + { + "id": "th_windmill_saas", + "name": "Windmill Saas", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/windmill-saas", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/windmill-saas/", + "description": "Windmill Saas" + }, + { + "id": "th_nextjs_tailwind_event_landing_page", + "name": "Nextjs Tailwind Event Landing Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nextjs-tailwind-event-landing-page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nextjs-tailwind-event-landing-page/", + "description": "Nextjs Tailwind Event Landing Page" + }, + { + "id": "th_nextjs_tailwind_app_presentation_page", + "name": "Nextjs Tailwind App Presentation Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/NextJS-Tailwind-App-Presentation-Page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/NextJS-Tailwind-App-Presentation-Page/", + "description": "Nextjs Tailwind App Presentation Page" + }, + { + "id": "th_saasland", + "name": "Saasland", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/saasland", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/saasland/", + "description": "Saasland" + }, + { + "id": "th_saaspal", + "name": "Saaspal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/SaaSpal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/SaaSpal/", + "description": "Saaspal" + }, + { + "id": "th_appvila", + "name": "Appvila", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Appvila", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Appvila/", + "description": "Appvila" + }, + { + "id": "th_saasintro", + "name": "Saasintro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/SaaSintro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/SaaSintro/", + "description": "Saasintro" + }, + { + "id": "th_paidin", + "name": "Paidin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/paidin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/paidin/", + "description": "Paidin - Free NextJs Landing Page Template with App Directory Routing" + }, + { + "id": "th_landingzero", + "name": "Landingzero", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/landingzero", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/landingzero/", + "description": "Landingzero" + }, + { + "id": "th_laslesvpn_nextjs", + "name": "Laslesvpn Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/LaslesVPN-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/LaslesVPN-nextjs/", + "description": "LaslesVPN - An Open Source Landingpage For VPN or Apps." + }, + { + "id": "th_rainblur_landing_page", + "name": "Rainblur Landing Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Rainblur-Landing-Page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Rainblur-Landing-Page/", + "description": "Rainblur Landing Page" + }, + { + "id": "th_agent_ai", + "name": "Agent Ai", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/agent-ai", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/agent-ai/", + "description": "AI Agent – Free Next.js Landing Page Template" + }, + { + "id": "th_saas", + "name": "Saas", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/saas", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/saas/", + "description": "Saas - Tailwind One Page Template" + }, + { + "id": "th_lingare", + "name": "Lingare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lingare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lingare/", + "description": "Lingare - Fashion tailwind landing page" + }, + { + "id": "th_newsletter", + "name": "Newsletter", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/newsletter", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/newsletter/", + "description": "Newsletter - Tailwind landing page Template for your Newsletter" + }, + { + "id": "th_skilline", + "name": "Skilline", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/skilline", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/skilline/", + "description": "Skilline - Landing Page" + }, + { + "id": "da_brand_html5_app_landing_page_responsive_web_template", + "name": "Brand Html5 App Landing Page Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "brand-html5-app-landing-page-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/brand-html5-app-landing-page-responsive-web-template/", + "description": "Brand Html5 App Landing Page Responsive Web Template" + }, + { + "id": "da_clouds_html5_multipurpose_landing_page_template", + "name": "Clouds Html5 Multipurpose Landing Page Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "clouds-html5-multipurpose-landing-page-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/clouds-html5-multipurpose-landing-page-template/", + "description": "Clouds Html5 Multipurpose Landing Page Template" + }, + { + "id": "da_foodz_mobile_app_bootstrap_landing_page", + "name": "Foodz Mobile App Bootstrap Landing Page", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "foodz-mobile-app-bootstrap-landing-page", + "preview_url": "https://dawidolko.github.io/Website-Templates/foodz-mobile-app-bootstrap-landing-page/", + "description": "Foodz Mobile App Bootstrap Landing Page" + }, + { + "id": "da_line_free_app_landing_page_responsive_web_template", + "name": "Line Free App Landing Page Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "line-free-app-landing-page-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/line-free-app-landing-page-responsive-web-template/", + "description": "Line Free App Landing Page Responsive Web Template" + }, + { + "id": "da_mobile_app_free_one_page_responsive_html5_landing_page", + "name": "Mobile App Free One Page Responsive Html5 Landing Page", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "mobile-app-free-one-page-responsive-html5-landing-page", + "preview_url": "https://dawidolko.github.io/Website-Templates/mobile-app-free-one-page-responsive-html5-landing-page/", + "description": "Mobile App Free One Page Responsive Html5 Landing Page" + }, + { + "id": "da_mobile_app_landing_page_html5_template", + "name": "Mobile App Landing Page Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "mobile-app-landing-page-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/mobile-app-landing-page-html5-template/", + "description": "Mobile App Landing Page Html5 Template" + }, + { + "id": "da_one_page_wonder", + "name": "One Page Wonder", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "one-page-wonder", + "preview_url": "https://dawidolko.github.io/Website-Templates/one-page-wonder/", + "description": "One Page Wonder" + }, + { + "id": "da_skytouch_onepage_bootstrap_responsive_web_template", + "name": "Skytouch Onepage Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "skytouch-onepage-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/skytouch-onepage-bootstrap-responsive-web-template/", + "description": "Skytouch Onepage Bootstrap Responsive Web Template" + }, + { + "id": "da_smartapp_free_html5_landing_page", + "name": "Smartapp Free Html5 Landing Page", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "smartapp-free-html5-landing-page", + "preview_url": "https://dawidolko.github.io/Website-Templates/smartapp-free-html5-landing-page/", + "description": "Smartapp Free Html5 Landing Page" + } + ] + }, + { + "id": "technology", + "name": "Технологии и IT", + "icon": "chart-bar", + "templates": [ + { + "id": "h5up_hyperspace", + "name": "Hyperspace", + "source": "html5up", + "description": "Сайт облачного хостинга", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "hyperspace", + "preview_url": "https://html5up.net/hyperspace/" + }, + { + "id": "h5up_future_imperfect", + "name": "Future Imperfect", + "source": "html5up", + "description": "Блог с боковой панелью", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "future-imperfect", + "preview_url": "https://html5up.net/future-imperfect/" + }, + { + "id": "lz_cloud_hosting", + "name": "Cloud Hosting", + "source": "learning-zone", + "description": "Облачный хостинг", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "cloud-hosting-free-bootstrap-responsive-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/cloud-hosting-free-bootstrap-responsive-website-template/" + }, + { + "id": "lz_fiber_hosting", + "name": "Fiber Hosting", + "source": "learning-zone", + "description": "Высокоскоростной хостинг", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "fiber-hosting-bootstrap-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/fiber-hosting-bootstrap-website-template/" + }, + { + "id": "lz_speed_hosting", + "name": "Speed Hosting", + "source": "learning-zone", + "description": "Быстрый веб-хостинг", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "speed-hosting-bootstrap-free-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/speed-hosting-bootstrap-free-html5-template/" + }, + { + "id": "lz_idata_hosting", + "name": "IData Hosting", + "source": "learning-zone", + "description": "Хостинг и облачные услуги", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "idata-hosting-free-bootstrap-responsive-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/idata-hosting-free-bootstrap-responsive-website-template/" + }, + { + "id": "h5up_solid_state", + "name": "Solid State", + "source": "html5up", + "description": "Панель управления", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "solid-state", + "preview_url": "https://html5up.net/solid-state/" + }, + { + "id": "h5up_spectral", + "name": "Spectral", + "source": "html5up", + "description": "Администраторская панель", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "spectral", + "preview_url": "https://html5up.net/spectral/" + }, + { + "id": "h5up_stellar", + "name": "Stellar", + "source": "html5up", + "description": "Интерфейс администратора", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "stellar", + "preview_url": "https://html5up.net/stellar/" + }, + { + "id": "h5up_tessellate", + "name": "Tessellate", + "source": "html5up", + "description": "Модульная админ-панель", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "tessellate", + "preview_url": "https://html5up.net/tessellate/" + }, + { + "id": "h5up_txt", + "name": "TXT", + "source": "html5up", + "description": "Текстовый интерфейс управления", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "txt", + "preview_url": "https://html5up.net/txt/" + }, + { + "id": "h5up_verti", + "name": "Verti", + "source": "html5up", + "description": "Вертикальная панель управления", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "verti", + "preview_url": "https://html5up.net/verti/" + }, + { + "id": "h5up_zerofour", + "name": "ZeroFour", + "source": "html5up", + "description": "Современная админ-панель", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "zerofour", + "preview_url": "https://html5up.net/zerofour/" + }, + { + "id": "h5up_parallelism", + "name": "Parallelism", + "source": "html5up", + "description": "Дашборд управления", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "parallelism", + "preview_url": "https://html5up.net/parallelism/" + }, + { + "id": "lz_dream_admin", + "name": "Dream Admin", + "source": "learning-zone", + "description": "Админ-панель на Bootstrap", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "free-bootstrap-admin-template-dream", + "preview_url": "https://learning-zone.github.io/website-templates/free-bootstrap-admin-template-dream/" + }, + { + "id": "lz_sb_admin", + "name": "SB Admin", + "source": "learning-zone", + "description": "Простая админ-панель", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "sb-admin", + "preview_url": "https://learning-zone.github.io/website-templates/sb-admin/" + }, + { + "id": "lz_sb_admin_2", + "name": "SB Admin 2", + "source": "learning-zone", + "description": "Продвинутая админ-панель", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "sb-admin-2", + "preview_url": "https://learning-zone.github.io/website-templates/sb-admin-2/" + }, + { + "id": "lz_insight_admin", + "name": "Insight Admin", + "source": "learning-zone", + "description": "Аналитическая панель управления", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "insight-free-bootstrap-html5-admin-template", + "preview_url": "https://learning-zone.github.io/website-templates/insight-free-bootstrap-html5-admin-template/" + }, + { + "id": "lz_hybrid_admin", + "name": "Hybrid Admin", + "source": "learning-zone", + "description": "Гибридная админ-панель", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "hybrid-bootstrap-admin-template", + "preview_url": "https://learning-zone.github.io/website-templates/hybrid-bootstrap-admin-template/" + }, + { + "id": "sb_admin_panel", + "name": "StartBootstrap SB Admin", + "source": "startbootstrap", + "description": "Универсальная админ-панель", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-sb-admin", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-sb-admin/" + }, + { + "id": "th_purpleadmin_free_admin_template", + "name": "Purpleadmin Free Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/PurpleAdmin-Free-Admin-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/PurpleAdmin-Free-Admin-Template/", + "description": "Purpleadmin Free Admin Template" + }, + { + "id": "th_ready_bootstrap_dashboard", + "name": "Ready Bootstrap Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Ready-Bootstrap-Dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Ready-Bootstrap-Dashboard/", + "description": "Free Bootstrap 4 Admin Dashboard" + }, + { + "id": "th_stellar", + "name": "Stellar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Stellar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Stellar/", + "description": "Stellar is completely based on the latest version of Bootstrap 4. Stellar Admin is designed to reflect the simplicity and svelte of the components and UI elements and coded to perfection with well-organized code." + }, + { + "id": "th_adminlte", + "name": "Adminlte", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adminLTE", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adminLTE/", + "description": "Adminlte" + }, + { + "id": "th_eliteadminlite", + "name": "Eliteadminlite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eliteadminlite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eliteadminlite/", + "description": "Eliteadminlite" + }, + { + "id": "th_corona_free_dark_bootstrap_admin_template", + "name": "Corona Free Dark Bootstrap Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/corona-free-dark-bootstrap-admin-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/corona-free-dark-bootstrap-admin-template/", + "description": "Free dark admin template based on Bootstrap 4." + }, + { + "id": "th_matrix_admin", + "name": "Matrix Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/matrix-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/matrix-admin/", + "description": "Matrix Admin" + }, + { + "id": "th_atlantis_lite", + "name": "Atlantis Lite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Atlantis-Lite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Atlantis-Lite/", + "description": "Free Bootstrap 4 Admin Dashboard" + }, + { + "id": "th_modular_admin", + "name": "Modular Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/modular-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/modular-admin/", + "description": "Bootstrap 4 Free Admin Template. " + }, + { + "id": "th_admincast", + "name": "Admincast", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/admincast", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/admincast/", + "description": "Admincast" + }, + { + "id": "th_adminkit", + "name": "Adminkit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adminkit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adminkit/", + "description": "AdminKit is an free & open-source HTML dashboard & admin template based on Bootstrap 5" + }, + { + "id": "th_ngx_admin", + "name": "Ngx Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ngx-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ngx-admin/", + "description": "Admin dashboard template based on Angular 4+, Bootstrap 4 (previously known as ng2-admin)" + }, + { + "id": "th_elaadmin", + "name": "Elaadmin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elaadmin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elaadmin/", + "description": "A clean & completely free Bootstrap 4 admin dashboard template" + }, + { + "id": "th_sb_admin", + "name": "Sb Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sb-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sb-admin/", + "description": "A free, open source, Bootstrap admin theme created by Start Bootstrap" + }, + { + "id": "th_coreui_free_bootstrap_admin_template", + "name": "Coreui Free Bootstrap Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/CoreUI-Free-Bootstrap-Admin-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/CoreUI-Free-Bootstrap-Admin-Template/", + "description": "CoreUI is Bootstrap 4 based admin template which is built with Angular2, AngularJS, React.js & Vue.js support." + }, + { + "id": "th_tabler", + "name": "Tabler", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tabler", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tabler/", + "description": "Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap 4" + }, + { + "id": "th_v_dashboard", + "name": "V Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/v-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/v-dashboard/", + "description": "V Dashboard" + }, + { + "id": "th_polluxui_free_admin_template", + "name": "Polluxui Free Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/polluxui-free-admin-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/polluxui-free-admin-template/", + "description": "PolluxUI Free Bootstrap Admin Dashboard Template" + }, + { + "id": "th_material_dashboard_2", + "name": "Material Dashboard 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-dashboard-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-dashboard-2/", + "description": "Material Dashboard 2" + }, + { + "id": "th_celestialadmin_free_admin_template", + "name": "Celestialadmin Free Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/celestialAdmin-free-admin-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/celestialAdmin-free-admin-template/", + "description": "Celestial Free Bootstrap Admin Dashboard Template" + }, + { + "id": "th_breeze_free_bootstrap_admin_template", + "name": "Breeze Free Bootstrap Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Breeze-Free-Bootstrap-Admin-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Breeze-Free-Bootstrap-Admin-Template/", + "description": "Free admin dashboard with Bootstrap 4" + }, + { + "id": "th_admin_one", + "name": "Admin One", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/admin-one", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/admin-one/", + "description": "Admin One" + }, + { + "id": "th_windmill_dashboard", + "name": "Windmill Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/windmill-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/windmill-dashboard/", + "description": "Windmill Dashboard" + }, + { + "id": "th_star_admin2_free_admin_template", + "name": "Star Admin2 Free Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/star-admin2-free-admin-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/star-admin2-free-admin-template/", + "description": "Star-Admin-2- Free-Bootstrap-Admin-Template" + }, + { + "id": "th_ruang_admin", + "name": "Ruang Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ruang-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ruang-admin/", + "description": "Ruang Admin" + }, + { + "id": "th_stisla_1", + "name": "Stisla 1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stisla-1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stisla-1/", + "description": "Free Bootstrap Admin Template" + }, + { + "id": "th_seomaster", + "name": "Seomaster", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/seomaster", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/seomaster/", + "description": "Seomaster" + }, + { + "id": "th_admin", + "name": "Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/admin/", + "description": "Admin" + }, + { + "id": "th_argon_dashboard", + "name": "Argon Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/argon-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/argon-dashboard/", + "description": "Argon Dashboard" + }, + { + "id": "th_digital_1", + "name": "Digital 1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/digital-1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/digital-1/", + "description": "Digital 1" + }, + { + "id": "th_seo_dream", + "name": "Seo Dream", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/seo-dream", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/seo-dream/", + "description": "Seo Dream" + }, + { + "id": "th_k_wd_dashboard", + "name": "K Wd Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/k-wd-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/k-wd-dashboard/", + "description": "K Wd Dashboard" + }, + { + "id": "th_startbootstrap_sb_admin_2", + "name": "Sb Admin 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/startbootstrap-sb-admin-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/startbootstrap-sb-admin-2/", + "description": "A free, open source, Bootstrap admin theme created by Start Bootstrap" + }, + { + "id": "th_marutiadmin", + "name": "Marutiadmin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/marutiadmin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/marutiadmin/", + "description": "Marutiadmin" + }, + { + "id": "th_gradient_able_free_bootstrap_admin_template", + "name": "Gradient Able Free Bootstrap Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Gradient-Able-free-bootstrap-admin-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Gradient-Able-free-bootstrap-admin-template/", + "description": "Gradient Able Free Bootstrap Admin Template" + }, + { + "id": "th_plus_admin", + "name": "Plus Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/plus-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/plus-admin/", + "description": "Plus Admin" + }, + { + "id": "th_adminbsbmaterialdesign", + "name": "Adminbsbmaterialdesign", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/AdminBSBMaterialDesign", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/AdminBSBMaterialDesign/", + "description": "Free Bootstrap 3 admin dashboard template made with Material Design." + }, + { + "id": "th_kiaalap", + "name": "Kiaalap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kiaalap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kiaalap/", + "description": "Free admin dashboard template" + }, + { + "id": "th_seogram", + "name": "Seogram", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/seogram", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/seogram/", + "description": "Seogram" + }, + { + "id": "th_elegantadminlite", + "name": "Elegantadminlite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elegantadminlite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elegantadminlite/", + "description": "Elegantadminlite" + }, + { + "id": "th_concept", + "name": "Concept", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/concept", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/concept/", + "description": "Free Bootstrap 4 admin dashboard template" + }, + { + "id": "th_themekit", + "name": "Themekit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/themekit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/themekit/", + "description": "Bootstrap 4 admin template." + }, + { + "id": "th_adminx", + "name": "Adminx", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/AdminX", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/AdminX/", + "description": "AdminX – a free and open source admin control panel based on Bootstrap 4.x" + }, + { + "id": "th_ecohosting", + "name": "Ecohosting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ecohosting", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ecohosting/", + "description": "Ecohosting" + }, + { + "id": "th_adminpro", + "name": "Adminpro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adminpro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adminpro/", + "description": "Adminpro" + }, + { + "id": "th_webhostingservice", + "name": "Webhostingservice", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/webhostingservice", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/webhostingservice/", + "description": "Webhostingservice" + }, + { + "id": "th_seos", + "name": "Seos", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/seos", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/seos/", + "description": "Seos" + }, + { + "id": "th_octopus", + "name": "Octopus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/octopus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/octopus/", + "description": "Free Bootstrap admin dashboard template" + }, + { + "id": "th_adminwrap", + "name": "Adminwrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adminwrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adminwrap/", + "description": "Adminwrap" + }, + { + "id": "th_soft_tech", + "name": "Soft Tech", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/soft-tech", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/soft-tech/", + "description": "Soft Tech" + }, + { + "id": "th_notika", + "name": "Notika", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/notika", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/notika/", + "description": "Free Bootstrap admin dashboard" + }, + { + "id": "th_chameleon_admin", + "name": "Chameleon Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/chameleon-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/chameleon-admin/", + "description": "Chameleon Admin" + }, + { + "id": "th_jeweler", + "name": "Jeweler", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jeweler", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jeweler/", + "description": "Free Bootstrap admin dashboard template" + }, + { + "id": "th_now_ui_dashboard", + "name": "Now Ui Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/now-ui-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/now-ui-dashboard/", + "description": "Now Ui Dashboard" + }, + { + "id": "th_srtdash", + "name": "Srtdash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/srtdash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/srtdash/", + "description": "Free admin dashboard template" + }, + { + "id": "th_flaxseo", + "name": "Flaxseo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/flaxseo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/flaxseo/", + "description": "Flaxseo" + }, + { + "id": "th_light_dashboard", + "name": "Light Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/light-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/light-dashboard/", + "description": "Light Bootstrap Dashboard is an admin dashboard template designed to be beautiful and simple. " + }, + { + "id": "th_nice_admin", + "name": "Nice Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nice-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nice-admin/", + "description": "Nice Admin" + }, + { + "id": "th_monster_lite", + "name": "Monster Lite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/monster-lite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/monster-lite/", + "description": "Free Admin Dashboard Template Based On Bootstrap 4" + }, + { + "id": "th_xtreme_admin", + "name": "Xtreme Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/xtreme-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/xtreme-admin/", + "description": "Xtreme Admin" + }, + { + "id": "th_admin_4b", + "name": "Admin 4B", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/admin-4b", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/admin-4b/", + "description": "Bootstrap 4 Admin Template." + }, + { + "id": "th_material_lite", + "name": "Material Lite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-lite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-lite/", + "description": "Responsive Admin Dashboard Template" + }, + { + "id": "th_intechnic", + "name": "Intechnic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/intechnic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/intechnic/", + "description": "Intechnic" + }, + { + "id": "th_maxitechture", + "name": "Maxitechture", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/maxitechture", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/maxitechture/", + "description": "Maxitechture" + }, + { + "id": "th_hightech", + "name": "Hightech", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hightech", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hightech/", + "description": "Hightech" + }, + { + "id": "th_seogo", + "name": "Seogo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/seogo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/seogo/", + "description": "Seogo" + }, + { + "id": "th_hostcloud", + "name": "Hostcloud", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hostcloud", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hostcloud/", + "description": "Hostcloud" + }, + { + "id": "th_hosting", + "name": "Hosting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hosting", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hosting/", + "description": "Hosting" + }, + { + "id": "th_greatseo", + "name": "Greatseo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/greatseo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/greatseo/", + "description": "Greatseo" + }, + { + "id": "th_datarc", + "name": "Datarc", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Datarc", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Datarc/", + "description": "Datarc" + }, + { + "id": "th_dashboard", + "name": "Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dashboard/", + "description": "Dashboard" + }, + { + "id": "th_software", + "name": "Software", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Software", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Software/", + "description": "Software" + }, + { + "id": "th_modernize", + "name": "Modernize", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Modernize", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Modernize/", + "description": "admin dashboard template" + }, + { + "id": "th_sneat", + "name": "Sneat", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sneat", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sneat/", + "description": "Free Vuetify Vuejs 3 Admin Template" + }, + { + "id": "th_hightechit", + "name": "Hightechit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/HighTechIT", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/HighTechIT/", + "description": "Hightechit" + }, + { + "id": "th_materialdashboard2", + "name": "Materialdashboard2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MaterialDashboard2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MaterialDashboard2/", + "description": "Materialdashboard2" + }, + { + "id": "th_dashdarkx", + "name": "Dashdarkx", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dashdarkX", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dashdarkX/", + "description": "React Material-UI dark admin dashboard template" + }, + { + "id": "th_modernize_mui_admin", + "name": "Modernize Mui Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/modernize-mui-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/modernize-mui-admin/", + "description": "Modernize Mui Admin" + }, + { + "id": "th_argon_dashboard_material_ui", + "name": "Argon Dashboard Material Ui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/argon-dashboard-material-ui", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/argon-dashboard-material-ui/", + "description": "This is the Material UI version of the Argon Dashboard React." + }, + { + "id": "th_carpatin_dashboard_free", + "name": "Carpatin Dashboard Free", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/carpatin-dashboard-free", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/carpatin-dashboard-free/", + "description": "Carpatin Dashboard Free" + }, + { + "id": "th_volt_react_dashboard", + "name": "Volt React Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/volt-react-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/volt-react-dashboard/", + "description": "Free and open source React.js admin dashboard template and UI library based on Bootstrap 5" + }, + { + "id": "th_react_typescript_dashboard", + "name": "React Typescript Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/react-typescript-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/react-typescript-dashboard/", + "description": "The first project I used Typescript. Very useful! I developed a dashboard using the data grid in MUI and Recharts charts." + }, + { + "id": "th_react_dashboard_material", + "name": "React Dashboard Material", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/react-dashboard-material", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/react-dashboard-material/", + "description": "React Dashboard Material" + }, + { + "id": "th_mantis_free_react_admin_template", + "name": "Mantis Free React Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mantis-free-react-admin-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mantis-free-react-admin-template/", + "description": "Mantis is React Dashboard Template having combine tone of 2 popular react component library - MUI and Ant Design principles." + }, + { + "id": "th_vision_ui_dashboard_react", + "name": "Vision Ui Dashboard React", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vision-ui-dashboard-react", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vision-ui-dashboard-react/", + "description": "Vision Ui Dashboard React" + }, + { + "id": "th_soft_ui_dashboard_react", + "name": "Soft Ui Dashboard React", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/soft-ui-dashboard-react", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/soft-ui-dashboard-react/", + "description": "Soft UI Dashboard React - Free Dashboard using React and Material UI" + }, + { + "id": "th_kaiadmin_lite", + "name": "Kaiadmin Lite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kaiadmin-lite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kaiadmin-lite/", + "description": "Free and Open-source Bootstrap 5 Admin Dashboard Template" + }, + { + "id": "th_seodash", + "name": "Seodash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/SEODash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/SEODash/", + "description": "Free Bootstrap 5 Admin Dashboard Website Template" + }, + { + "id": "th_commercialbundle2025", + "name": "Commercialbundle2025", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/CommercialBundle2025", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/CommercialBundle2025/", + "description": "50 Free Admin & eCom Templates for 2025" + }, + { + "id": "th_mantis_bootstrap", + "name": "Mantis Bootstrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Mantis-Bootstrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Mantis-Bootstrap/", + "description": "Free Bootstrap 5 Admin Template" + }, + { + "id": "th_staradmin_free_bootstrap_admin_template", + "name": "Staradmin Free Bootstrap Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/StarAdmin-Free-Bootstrap-Admin-Template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/StarAdmin-Free-Bootstrap-Admin-Template/", + "description": "A Free Responsive Admin Dashboard Template Built With Bootstrap 4. Elegant UI Theme for Your Web App!" + }, + { + "id": "th_materialdash_admin", + "name": "Materialdash Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MaterialDash-Admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MaterialDash-Admin/", + "description": "Materialdash Admin" + }, + { + "id": "th_black_dashboard", + "name": "Black Dashboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/black-dashboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/black-dashboard/", + "description": "Black Dashboard" + }, + { + "id": "th_flexy_bootstrap_lite", + "name": "Flexy Bootstrap Lite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/flexy-bootstrap-lite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/flexy-bootstrap-lite/", + "description": "Flexy Admin Lite is a Free Modern Bootstrap 5 WebApp & Admin Dashboard Html Template elegant design, clean and organised code." + }, + { + "id": "th_materially_free_react_admin_template", + "name": "Materially Free React Admin Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/materially-free-react-admin-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/materially-free-react-admin-template/", + "description": "Free version of Materially admin template" + }, + { + "id": "th_mantis_vuejs_admintemplate", + "name": "Mantis Vuejs Admintemplate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Mantis-vuejs-AdminTemplate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Mantis-vuejs-AdminTemplate/", + "description": "Mantis Vue and Vuetify free admin template" + }, + { + "id": "th_argon_dashboard_tailwind", + "name": "Argon Dashboard Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/argon-dashboard-tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/argon-dashboard-tailwind/", + "description": "Argon Dashboard Tailwind - Free and OpenSource TailwindCSS Dashboard" + }, + { + "id": "th_dashboardkit", + "name": "Dashboardkit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/DashboardKit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/DashboardKit/", + "description": "Dashboardkit" + }, + { + "id": "th_soft_ui_dashboard_tailwind", + "name": "Soft Ui Dashboard Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Soft-UI-Dashboard-Tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Soft-UI-Dashboard-Tailwind/", + "description": "Soft Ui Dashboard Tailwind" + }, + { + "id": "th_tailadmin", + "name": "Tailadmin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/TailAdmin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/TailAdmin/", + "description": "https://themewagon.github.io/TailAdmin/" + }, + { + "id": "th_tailadmin_nextjs", + "name": "Tailadmin Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tailadmin-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tailadmin-nextjs/", + "description": "Tailadmin Nextjs" + }, + { + "id": "th_tailadmin_vuejs", + "name": "Tailadmin Vuejs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tailadmin-vuejs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tailadmin-vuejs/", + "description": "Tailadmin Vuejs" + }, + { + "id": "th_aurora_free", + "name": "Aurora Free", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aurora-free", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aurora-free/", + "description": "Aurora Free React Material-UI Admin Template." + }, + { + "id": "th_matdash_nextjs", + "name": "Matdash Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/matdash-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/matdash-nextjs/", + "description": "MatDash Free Tailwind Next.js Admin Template" + }, + { + "id": "th_material_dashboard_tailwind_old", + "name": "Material Dashboard Tailwind Old ", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-dashboard-tailwind-old-", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-dashboard-tailwind-old-/", + "description": "Material Dashboard Tailwind Old " + }, + { + "id": "th_duralux_admin", + "name": "Duralux Admin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Duralux-admin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Duralux-admin/", + "description": "Duralux - CRM Admin & Dashboard HTML Template" + }, + { + "id": "th_material_dashboard_shadcn_vue", + "name": "Material Dashboard Shadcn Vue", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-dashboard-shadcn-vue", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-dashboard-shadcn-vue/", + "description": "Material Dashboard Shadcn Vue – A modern CRM template for Vue developers" + }, + { + "id": "th_material_tailwind_dashboard_react", + "name": "Material Tailwind Dashboard React", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-tailwind-dashboard-react", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-tailwind-dashboard-react/", + "description": "Material Tailwind Dashboard React" + }, + { + "id": "th_smart_home", + "name": "Smart Home", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/smart-home", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/smart-home/", + "description": "Smart Home Dashboard Template – Next.js Admin UI" + }, + { + "id": "th_inapp", + "name": "Inapp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/inapp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/inapp/", + "description": "InApp Free Inventory Admin Dashboard Template" + }, + { + "id": "th_dasher", + "name": "Dasher", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dasher", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dasher/", + "description": "Dasher UI - Free Bootstrap 5 Admin Dashboard Template" + }, + { + "id": "da_cloud_hosting_free_bootstrap_responsive_website_template", + "name": "Cloud Hosting Free Bootstrap Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "cloud-hosting-free-bootstrap-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/cloud-hosting-free-bootstrap-responsive-website-template/", + "description": "Cloud Hosting Free Bootstrap Responsive Website Template" + }, + { + "id": "da_fiber_hosting_bootstrap_website_template", + "name": "Fiber Hosting Bootstrap Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "fiber-hosting-bootstrap-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/fiber-hosting-bootstrap-website-template/", + "description": "Fiber Hosting Bootstrap Website Template" + }, + { + "id": "da_free_bootstrap_admin_template_dream", + "name": "Free Bootstrap Admin Template Dream", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "free-bootstrap-admin-template-dream", + "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-admin-template-dream/", + "description": "Free Bootstrap Admin Template Dream" + }, + { + "id": "da_hybrid_bootstrap_admin_template", + "name": "Hybrid Bootstrap Admin Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "hybrid-bootstrap-admin-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/hybrid-bootstrap-admin-template/", + "description": "Hybrid Bootstrap Admin Template" + }, + { + "id": "da_idata_hosting_free_bootstrap_responsive_website_template", + "name": "Idata Hosting Free Bootstrap Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "idata-hosting-free-bootstrap-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/idata-hosting-free-bootstrap-responsive-website-template/", + "description": "Idata Hosting Free Bootstrap Responsive Website Template" + }, + { + "id": "da_insight_free_bootstrap_html5_admin_template", + "name": "Insight Free Bootstrap Html5 Admin Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "insight-free-bootstrap-html5-admin-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/insight-free-bootstrap-html5-admin-template/", + "description": "Insight Free Bootstrap Html5 Admin Template" + }, + { + "id": "da_matrix_free_bootstrap_admin_template", + "name": "Matrix Free Bootstrap Admin Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "matrix-free-bootstrap-admin-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/matrix-free-bootstrap-admin-template/", + "description": "Matrix Free Bootstrap Admin Template" + }, + { + "id": "da_sb_admin_2", + "name": "Sb Admin 2", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "sb-admin-2", + "preview_url": "https://dawidolko.github.io/Website-Templates/sb-admin-2/", + "description": "Sb Admin 2" + }, + { + "id": "da_sb_admin", + "name": "Sb Admin", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "sb-admin", + "preview_url": "https://dawidolko.github.io/Website-Templates/sb-admin/", + "description": "Sb Admin" + }, + { + "id": "da_speed_hosting_bootstrap_free_html5_template", + "name": "Speed Hosting Bootstrap Free Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "speed-hosting-bootstrap-free-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/speed-hosting-bootstrap-free-html5-template/", + "description": "Speed Hosting Bootstrap Free Html5 Template" + }, + { + "id": "da_startbootstrap_sb_admin_1_0_2", + "name": "Sb Admin 1.0.2", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "startbootstrap-sb-admin-1.0.2", + "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-sb-admin-1.0.2/", + "description": "Sb Admin 1.0.2" + }, + { + "id": "da_startbootstrap_sb_admin_2_1_0_5", + "name": "Sb Admin 2 1.0.5", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "startbootstrap-sb-admin-2-1.0.5", + "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-sb-admin-2-1.0.5/", + "description": "Sb Admin 2 1.0.5" + }, + { + "id": "da_tech_city_free_coming_soon_bootstrap_responsive_template", + "name": "Tech City Free Coming Soon Bootstrap Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "tech-city-free-coming-soon-bootstrap-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/tech-city-free-coming-soon-bootstrap-responsive-template/", + "description": "Tech City Free Coming Soon Bootstrap Responsive Template" + }, + { + "id": "da_techro", + "name": "Techro", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "techro", + "preview_url": "https://dawidolko.github.io/Website-Templates/techro/", + "description": "Techro" + } + ] + }, + { + "id": "blog", + "name": "Блоги и журналы", + "icon": "book", + "templates": [ + { + "id": "h5up_dopetrope", + "name": "Dopetrope", + "source": "html5up", + "description": "Шаблон для медиа-блога", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "dopetrope", + "preview_url": "https://html5up.net/dopetrope/" + }, + { + "id": "h5up_massively", + "name": "Massively", + "source": "html5up", + "description": "Блог с выделенными постами", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "massively", + "preview_url": "https://html5up.net/massively/" + }, + { + "id": "h5up_story", + "name": "Story", + "source": "html5up", + "description": "Шаблон для рассказов и статей", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "story", + "preview_url": "https://html5up.net/story/" + }, + { + "id": "sb_clean_blog", + "name": "StartBootstrap Clean Blog", + "source": "startbootstrap", + "description": "Чистый и простой блог", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-clean-blog", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-clean-blog/" + }, + { + "id": "th_aznews", + "name": "Aznews", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aznews", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aznews/", + "description": "Aznews" + }, + { + "id": "th_news", + "name": "News", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/news", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/news/", + "description": "News" + }, + { + "id": "th_biznews", + "name": "Biznews", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/biznews", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/biznews/", + "description": "Biznews" + }, + { + "id": "th_magnews2", + "name": "Magnews2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/magnews2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/magnews2/", + "description": "Magnews2" + }, + { + "id": "th_magz", + "name": "Magz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Magz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Magz/", + "description": "Free magazine template based on Bootstrap3, HTML5 & CSS3. " + }, + { + "id": "th_blogger", + "name": "Blogger", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/blogger", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/blogger/", + "description": "Blogger" + }, + { + "id": "th_newsbox", + "name": "Newsbox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/newsbox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/newsbox/", + "description": "Newsbox" + }, + { + "id": "th_24_news", + "name": "24 News", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/24-news", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/24-news/", + "description": "24 News" + }, + { + "id": "th_themeblog", + "name": "Themeblog", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ThemeBlog", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ThemeBlog/", + "description": "Fully responsive and unique blog template made by Bootstrap" + }, + { + "id": "th_awesome_magazine", + "name": "Awesome Magazine", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/awesome-magazine", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/awesome-magazine/", + "description": "Awesome Magazine" + }, + { + "id": "th_massively", + "name": "Massively", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/massively", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/massively/", + "description": "Free Responsive HTML5 Bootstrap Template for Blogging" + }, + { + "id": "th_newspot", + "name": "Newspot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/newspot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/newspot/", + "description": "Newspot" + }, + { + "id": "th_newsoft", + "name": "Newsoft", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/newsoft", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/newsoft/", + "description": "Newsoft" + }, + { + "id": "th_blogy", + "name": "Blogy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/blogy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/blogy/", + "description": "Blogy" + }, + { + "id": "th_newsers", + "name": "Newsers", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Newsers", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Newsers/", + "description": "Newsers" + }, + { + "id": "th_blogge", + "name": "Blogge", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Blogge", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Blogge/", + "description": "Free HTML Blogging Website Template" + }, + { + "id": "th_zenblog", + "name": "Zenblog", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ZenBlog", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ZenBlog/", + "description": "Free Bootstrap 5 Blogging Website Template" + }, + { + "id": "th_nextjs_tailwind_blog_posts_page", + "name": "Nextjs Tailwind Blog Posts Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nextjs-tailwind-blog-posts-page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nextjs-tailwind-blog-posts-page/", + "description": "Nextjs Tailwind Blog Posts Page" + }, + { + "id": "th_nextjs_blog_posts_page", + "name": "Nextjs Blog Posts Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nextjs-blog-posts-page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nextjs-blog-posts-page/", + "description": "Nextjs Blog Posts Page" + }, + { + "id": "th_bookworm", + "name": "Bookworm", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Bookworm", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Bookworm/", + "description": "Bookworm – a minimal multi-author free nextjs blog template." + }, + { + "id": "th_tailwind_nextjs_starter_blog", + "name": "Tailwind Nextjs Starter Blog", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Tailwind-Nextjs-Starter-Blog", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Tailwind-Nextjs-Starter-Blog/", + "description": "Tailwind Nextjs Starter Blog – a Next.js, Tailwind CSS blogging starter template." + }, + { + "id": "da_startbootstrap_clean_blog_1_0_2", + "name": "Clean Blog 1.0.2", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "startbootstrap-clean-blog-1.0.2", + "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-clean-blog-1.0.2/", + "description": "Clean Blog 1.0.2" + } + ] + }, + { + "id": "travel", + "name": "Путешествия", + "icon": "home", + "templates": [ + { + "id": "h5up_prologue", + "name": "Prologue", + "source": "html5up", + "description": "Одностраничный портал путешествий", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "prologue", + "preview_url": "https://html5up.net/prologue/" + }, + { + "id": "h5up_twenty", + "name": "Twenty", + "source": "html5up", + "description": "Туристический портал", + "repo_url": "https://github.com/zce/html5up", + "sparse_path": "twenty", + "preview_url": "https://html5up.net/twenty/" + }, + { + "id": "lz_traveller", + "name": "Traveller", + "source": "learning-zone", + "description": "Туристическое агентство", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "traveller-bootstrap-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/traveller-bootstrap-responsive-web-template/" + }, + { + "id": "sb_grayscale", + "name": "StartBootstrap Grayscale", + "source": "startbootstrap", + "description": "Портал путешествий", + "repo_url": "https://github.com/StartBootstrap/startbootstrap-grayscale", + "sparse_path": ".", + "preview_url": "https://startbootstrap.github.io/startbootstrap-grayscale/" + }, + { + "id": "th_adventure", + "name": "Adventure", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adventure", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adventure/", + "description": "Adventure" + }, + { + "id": "th_travelista", + "name": "Travelista", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/travelista", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/travelista/", + "description": "Travelista" + }, + { + "id": "th_tour", + "name": "Tour", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tour", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tour/", + "description": "Tour" + }, + { + "id": "th_wooxtravel", + "name": "Wooxtravel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wooxtravel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wooxtravel/", + "description": "Wooxtravel" + }, + { + "id": "th_hotelier", + "name": "Hotelier", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hotelier", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hotelier/", + "description": "Hotelier" + }, + { + "id": "th_gotrip", + "name": "Gotrip", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gotrip", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gotrip/", + "description": "Gotrip" + }, + { + "id": "th_travelo", + "name": "Travelo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/travelo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/travelo/", + "description": "Travelo" + }, + { + "id": "th_tripbiz", + "name": "Tripbiz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tripbiz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tripbiz/", + "description": "Tripbiz" + }, + { + "id": "th_star_hotels", + "name": "Star Hotels", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/star-hotels", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/star-hotels/", + "description": "Star Hotels" + }, + { + "id": "th_travelix", + "name": "Travelix", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/travelix", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/travelix/", + "description": "Travelix" + }, + { + "id": "th_hotel", + "name": "Hotel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hotel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hotel/", + "description": "Hotel" + }, + { + "id": "th_vacation_rental", + "name": "Vacation Rental", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vacation-rental", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vacation-rental/", + "description": "Vacation Rental" + }, + { + "id": "th_trips", + "name": "Trips", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trips", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trips/", + "description": "Trips" + }, + { + "id": "th_luxury_hotel", + "name": "Luxury Hotel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/luxury-hotel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/luxury-hotel/", + "description": "Luxury Hotel" + }, + { + "id": "th_vacation", + "name": "Vacation", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vacation", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vacation/", + "description": "Vacation" + }, + { + "id": "th_travelers", + "name": "Travelers", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/travelers", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/travelers/", + "description": "Travelers" + }, + { + "id": "th_trip_spot", + "name": "Trip Spot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trip-spot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trip-spot/", + "description": "Trip Spot" + }, + { + "id": "th_mercury_travel", + "name": "Mercury Travel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mercury-travel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mercury-travel/", + "description": "Mercury Travel" + }, + { + "id": "th_travellers", + "name": "Travellers", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Travellers", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Travellers/", + "description": "Travellers" + }, + { + "id": "th_travela", + "name": "Travela", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/travela", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/travela/", + "description": "Travela" + }, + { + "id": "th_mellow", + "name": "Mellow", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mellow", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mellow/", + "description": "Free Bootstrap 5 Hotel Website Template" + }, + { + "id": "th_telly", + "name": "Telly", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/telly", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/telly/", + "description": "Free Bootstrap 5 Hotel Website Template" + }, + { + "id": "th_roadtrip", + "name": "Roadtrip", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/RoadTrip", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/RoadTrip/", + "description": "HTML5 & CSS3 Template" + }, + { + "id": "th_bustraveller", + "name": "Bustraveller", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/BusTraveller", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/BusTraveller/", + "description": "Bustraveller" + }, + { + "id": "th_tournest", + "name": "Tournest", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tournest", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tournest/", + "description": "Tournest" + }, + { + "id": "da_golden_hotel_free_html5_bootstrap_web_template", + "name": "Golden Hotel Free Html5 Bootstrap Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "golden-hotel-free-html5-bootstrap-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/golden-hotel-free-html5-bootstrap-web-template/", + "description": "Golden Hotel Free Html5 Bootstrap Web Template" + }, + { + "id": "da_traveller_bootstrap_responsive_web_template", + "name": "Traveller Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "traveller-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/traveller-bootstrap-responsive-web-template/", + "description": "Traveller Bootstrap Responsive Web Template" + } + ] + }, + { + "id": "beauty", + "name": "Красота и свадьбы", + "icon": "palette", + "templates": [ + { + "id": "lz_beauty_salon", + "name": "Beauty Salon", + "source": "learning-zone", + "description": "Салон красоты", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "beauty-salon-bootstrap-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/beauty-salon-bootstrap-html5-template/" + }, + { + "id": "lz_lovely_wedding", + "name": "Lovely Wedding", + "source": "learning-zone", + "description": "Свадебное агентство", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "lovely-wedding-bootstrap-free-website-template", + "preview_url": "https://learning-zone.github.io/website-templates/lovely-wedding-bootstrap-free-website-template/" + }, + { + "id": "lz_best_wedding", + "name": "Best Wedding", + "source": "learning-zone", + "description": "Портал свадебных услуг", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "the-best-wedding-free-bootstrap-template", + "preview_url": "https://learning-zone.github.io/website-templates/the-best-wedding-free-bootstrap-template/" + }, + { + "id": "lz_wedding_bells", + "name": "Wedding Bells", + "source": "learning-zone", + "description": "Звон свадебных колоколов", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "wedding-bells-free-responsive-html5-template", + "preview_url": "https://learning-zone.github.io/website-templates/wedding-bells-free-responsive-html5-template/" + }, + { + "id": "th_malefashion", + "name": "Malefashion", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/malefashion", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/malefashion/", + "description": "Malefashion" + }, + { + "id": "th_space_dynamic", + "name": "Space Dynamic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/space-dynamic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/space-dynamic/", + "description": "Space Dynamic" + }, + { + "id": "th_haircare", + "name": "Haircare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/haircare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/haircare/", + "description": "Haircare" + }, + { + "id": "th_salon", + "name": "Salon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Salon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Salon/", + "description": "Free website template for hair salon, hairdressing, barber shop, and beauty salon" + }, + { + "id": "th_man_hair_salon", + "name": "Man Hair Salon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Man-Hair-Salon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Man-Hair-Salon/", + "description": "Man Hair Salon" + }, + { + "id": "th_labspa2", + "name": "Labspa2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/labspa2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/labspa2/", + "description": "Labspa2" + }, + { + "id": "th_sparsh", + "name": "Sparsh", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sparsh", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sparsh/", + "description": "Sparsh" + }, + { + "id": "th_hipstyle", + "name": "Hipstyle", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hipstyle", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hipstyle/", + "description": "Hipstyle" + }, + { + "id": "th_whitespace", + "name": "Whitespace", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/whitespace", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/whitespace/", + "description": "Whitespace" + }, + { + "id": "th_hotspace", + "name": "Hotspace", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hotspace", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hotspace/", + "description": "Hotspace" + }, + { + "id": "th_beauty", + "name": "Beauty", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/beauty", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/beauty/", + "description": "Beauty" + }, + { + "id": "th_the_real_wedding", + "name": "The Real Wedding", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/the-real-wedding", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/the-real-wedding/", + "description": "The Real Wedding" + }, + { + "id": "th_haircut", + "name": "Haircut", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/haircut", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/haircut/", + "description": "Haircut" + }, + { + "id": "th_space", + "name": "Space", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/space", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/space/", + "description": "Space" + }, + { + "id": "th_style", + "name": "Style", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/style", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/style/", + "description": "Style" + }, + { + "id": "th_hairnic", + "name": "Hairnic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hairnic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hairnic/", + "description": "Hairnic" + }, + { + "id": "th_sparlex", + "name": "Sparlex", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sparlex", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sparlex/", + "description": "Sparlex" + }, + { + "id": "th_lifestylemag", + "name": "Lifestylemag", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/LifeStyleMag", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/LifeStyleMag/", + "description": "Lifestylemag" + }, + { + "id": "th_lifestyle", + "name": "Lifestyle", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lifestyle", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lifestyle/", + "description": "Lifestyle Free Website Template" + }, + { + "id": "th_salone", + "name": "Salone", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Salone", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Salone/", + "description": "Salone" + }, + { + "id": "th_perfectcut", + "name": "Perfectcut", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/perfectcut", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/perfectcut/", + "description": "Perfectcut – Beauty Salon Website template" + }, + { + "id": "da_aroma_beauty_and_spa_responsive_bootstrap_template", + "name": "Aroma Beauty And Spa Responsive Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "aroma-beauty-and-spa-responsive-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/aroma-beauty-and-spa-responsive-bootstrap-template/", + "description": "Aroma Beauty And Spa Responsive Bootstrap Template" + }, + { + "id": "da_beauty_salon_bootstrap_html5_template", + "name": "Beauty Salon Bootstrap Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "beauty-salon-bootstrap-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/beauty-salon-bootstrap-html5-template/", + "description": "Beauty Salon Bootstrap Html5 Template" + }, + { + "id": "da_lovely_wedding_bootstrap_free_website_template", + "name": "Lovely Wedding Bootstrap Free Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "lovely-wedding-bootstrap-free-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/lovely-wedding-bootstrap-free-website-template/", + "description": "Lovely Wedding Bootstrap Free Website Template" + }, + { + "id": "da_photo_style_two", + "name": "Photo Style Two", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "photo-style-two", + "preview_url": "https://dawidolko.github.io/Website-Templates/photo-style-two/", + "description": "Photo Style Two" + }, + { + "id": "da_the_best_wedding_free_bootstrap_template", + "name": "The Best Wedding Free Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "the-best-wedding-free-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/the-best-wedding-free-bootstrap-template/", + "description": "The Best Wedding Free Bootstrap Template" + }, + { + "id": "da_wedding_bells_free_responsive_html5_template", + "name": "Wedding Bells Free Responsive Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "wedding-bells-free-responsive-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/wedding-bells-free-responsive-html5-template/", + "description": "Wedding Bells Free Responsive Html5 Template" + } + ] + }, + { + "id": "automotive", + "name": "Авто и транспорт", + "icon": "chart-bar", + "templates": [ + { + "id": "lz_car_zone", + "name": "Car Zone", + "source": "learning-zone", + "description": "Автосалон и продажа машин", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "car-zone-automobile-bootstrap-responsive-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/car-zone-automobile-bootstrap-responsive-web-template/" + }, + { + "id": "lz_car_care", + "name": "Car Care", + "source": "learning-zone", + "description": "Автосервис и уход за авто", + "repo_url": "https://github.com/learning-zone/website-templates", + "sparse_path": "car-care-auto-mobile-html5-bootstrap-web-template", + "preview_url": "https://learning-zone.github.io/website-templates/car-care-auto-mobile-html5-bootstrap-web-template/" + }, + { + "id": "th_carbook", + "name": "Carbook", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/carbook", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/carbook/", + "description": "Carbook" + }, + { + "id": "th_dentcare", + "name": "Dentcare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dentcare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dentcare/", + "description": "Dentcare" + }, + { + "id": "th_carserv", + "name": "Carserv", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/carserv", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/carserv/", + "description": "Carserv" + }, + { + "id": "th_dentacare", + "name": "Dentacare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dentacare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dentacare/", + "description": "Dentacare" + }, + { + "id": "th_logistics", + "name": "Logistics", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/logistics", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/logistics/", + "description": "Logistics" + }, + { + "id": "th_medic_care", + "name": "Medic Care", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medic-care", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medic-care/", + "description": "Medic Care" + }, + { + "id": "th_caremed", + "name": "Caremed", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/caremed", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/caremed/", + "description": "Caremed" + }, + { + "id": "th_transportz", + "name": "Transportz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/transportz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/transportz/", + "description": "Transportz" + }, + { + "id": "th_legalcare", + "name": "Legalcare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/legalcare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/legalcare/", + "description": "Legalcare" + }, + { + "id": "th_carrent", + "name": "Carrent", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/carrent", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/carrent/", + "description": "Carrent" + }, + { + "id": "th_drcare", + "name": "Drcare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/drcare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/drcare/", + "description": "Drcare" + }, + { + "id": "th_carwash", + "name": "Carwash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/carwash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/carwash/", + "description": "Carwash" + }, + { + "id": "th_lawncare", + "name": "Lawncare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lawncare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lawncare/", + "description": "Lawncare" + }, + { + "id": "th_caraft", + "name": "Caraft", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/caraft", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/caraft/", + "description": "Caraft" + }, + { + "id": "th_taxi", + "name": "Taxi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/taxi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/taxi/", + "description": "Taxi" + }, + { + "id": "th_autorepair", + "name": "Autorepair", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/autorepair", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/autorepair/", + "description": "Autorepair" + }, + { + "id": "th_unicare", + "name": "Unicare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/unicare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/unicare/", + "description": "Unicare" + }, + { + "id": "th_autoroad", + "name": "Autoroad", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/autoroad", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/autoroad/", + "description": "Autoroad" + }, + { + "id": "th_carrentals", + "name": "Carrentals", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/carrentals", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/carrentals/", + "description": "Carrentals" + }, + { + "id": "th_cargo", + "name": "Cargo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cargo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cargo/", + "description": "Cargo" + }, + { + "id": "th_medcare", + "name": "Medcare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medcare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medcare/", + "description": "Medcare" + }, + { + "id": "th_cardboard", + "name": "Cardboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cardboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cardboard/", + "description": "Cardboard" + }, + { + "id": "th_careo", + "name": "Careo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/careo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/careo/", + "description": "Careo" + }, + { + "id": "th_card", + "name": "Card", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/card", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/card/", + "description": "Card" + }, + { + "id": "th_transportation", + "name": "Transportation", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/transportation", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/transportation/", + "description": "Transportation" + }, + { + "id": "th_guide", + "name": "Guide", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/guide", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/guide/", + "description": "Free Logistic Transport Website template" + }, + { + "id": "th_primecare", + "name": "Primecare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/PrimeCare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/PrimeCare/", + "description": "Primecare" + }, + { + "id": "th_carint", + "name": "Carint", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Carint", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Carint/", + "description": "Carint" + }, + { + "id": "th_freshcart", + "name": "Freshcart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/freshcart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/freshcart/", + "description": "Freshcart" + }, + { + "id": "da_car_care_auto_mobile_html5_bootstrap_web_template", + "name": "Car Care Auto Mobile Html5 Bootstrap Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "car-care-auto-mobile-html5-bootstrap-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/car-care-auto-mobile-html5-bootstrap-web-template/", + "description": "Car Care Auto Mobile Html5 Bootstrap Web Template" + }, + { + "id": "da_car_repair_html5_bootstrap_template", + "name": "Car Repair Html5 Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "car-repair-html5-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/car-repair-html5-bootstrap-template/", + "description": "Car Repair Html5 Bootstrap Template" + }, + { + "id": "da_car_zone_automobile_bootstrap_responsive_web_template", + "name": "Car Zone Automobile Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "car-zone-automobile-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/car-zone-automobile-bootstrap-responsive-web-template/", + "description": "Car Zone Automobile Bootstrap Responsive Web Template" + } + ] + }, + { + "id": "entertainment", + "name": "Развлечения и события", + "icon": "rocket", + "templates": [ + { + "id": "th_eventon_christmas", + "name": "Eventon Christmas", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eventon-christmas", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eventon-christmas/", + "description": "Eventon Christmas" + }, + { + "id": "th_one_music", + "name": "One Music", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/one-music", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/one-music/", + "description": "One Music" + }, + { + "id": "th_game_warrior", + "name": "Game Warrior", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/game-warrior", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/game-warrior/", + "description": "Game Warrior" + }, + { + "id": "th_eventcon", + "name": "Eventcon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eventcon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eventcon/", + "description": "Eventcon" + }, + { + "id": "th_endgame", + "name": "Endgame", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/endgame", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/endgame/", + "description": "Endgame" + }, + { + "id": "th_theevent", + "name": "Theevent", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/theevent", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/theevent/", + "description": "Theevent" + }, + { + "id": "th_musico", + "name": "Musico", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/musico", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/musico/", + "description": "Musico" + }, + { + "id": "th_sports", + "name": "Sports", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sports", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sports/", + "description": "Sports" + }, + { + "id": "th_solmusic", + "name": "Solmusic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/solmusic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/solmusic/", + "description": "Solmusic" + }, + { + "id": "th_sportz", + "name": "Sportz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sportz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sportz/", + "description": "Sportz" + }, + { + "id": "th_eventalk", + "name": "Eventalk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eventalk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eventalk/", + "description": "Eventalk" + }, + { + "id": "th_music1", + "name": "Music1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/music1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/music1/", + "description": "Music1" + }, + { + "id": "th_eventz", + "name": "Eventz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eventz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eventz/", + "description": "Eventz" + }, + { + "id": "th_eventre", + "name": "Eventre", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eventre", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eventre/", + "description": "Eventre" + }, + { + "id": "th_esportsteam", + "name": "Esportsteam", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/esportsteam", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/esportsteam/", + "description": "Esportsteam" + }, + { + "id": "th_avalon", + "name": "Avalon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/avalon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/avalon/", + "description": "It's a one page template specially crafted for event and conference websites. Get this free template from ThemeWaogn." + }, + { + "id": "th_sportsfit", + "name": "Sportsfit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sportsfit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sportsfit/", + "description": "Sportsfit" + }, + { + "id": "th_sports_coach", + "name": "Sports Coach", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sports-coach", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sports-coach/", + "description": "A Responsive Template for Online Coaching" + }, + { + "id": "th_trailer_time", + "name": "Trailer Time", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trailer-time", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trailer-time/", + "description": "This website was designed to allow viewers complete access to all movie and tv series trailers. It was created using React + MUI" + }, + { + "id": "th_waterland", + "name": "Waterland", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/WaterLand", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/WaterLand/", + "description": "Free Entertainment Website Template" + }, + { + "id": "da_delite_music_html5_bootstrap_responsive_web_template", + "name": "Delite Music Html5 Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "delite-music-html5-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/delite-music-html5-bootstrap-responsive-web-template/", + "description": "Delite Music Html5 Bootstrap Responsive Web Template" + } + ] + }, + { + "id": "nonprofit", + "name": "Благотворительность", + "icon": "heart", + "templates": [ + { + "id": "th_rango", + "name": "Rango", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rango", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rango/", + "description": "Rango" + }, + { + "id": "th_charityworks", + "name": "Charityworks", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/charityworks", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/charityworks/", + "description": "Charityworks" + }, + { + "id": "th_charity", + "name": "Charity", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Charity", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Charity/", + "description": "Charity" + }, + { + "id": "th_dingo", + "name": "Dingo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dingo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dingo/", + "description": "Dingo" + }, + { + "id": "th_bingo", + "name": "Bingo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bingo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bingo/", + "description": "Bingo" + }, + { + "id": "th_foundation", + "name": "Foundation", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foundation", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foundation/", + "description": "Foundation" + }, + { + "id": "th_hangover", + "name": "Hangover", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hangover", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hangover/", + "description": "Another cool HTML Responsive Template" + }, + { + "id": "th_sungo", + "name": "Sungo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sungo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sungo/", + "description": "Sungo – Ecology & Solar Energy HTML Template" + } + ] + }, + { + "id": "photography", + "name": "Фотография", + "icon": "palette", + "templates": [ + { + "id": "th_training_studio", + "name": "Training Studio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/training-studio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/training-studio/", + "description": "Training Studio" + }, + { + "id": "th_photosen", + "name": "Photosen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photosen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photosen/", + "description": "Photosen" + }, + { + "id": "th_photozone", + "name": "Photozone", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photozone", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photozone/", + "description": "Photozone" + }, + { + "id": "th_dronephotography", + "name": "Dronephotography", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dronephotography", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dronephotography/", + "description": "Dronephotography" + }, + { + "id": "th_mostudio", + "name": "Mostudio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mostudio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mostudio/", + "description": "Mostudio" + }, + { + "id": "th_photography", + "name": "Photography", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photography", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photography/", + "description": "Photography Template" + }, + { + "id": "th_photography_cl", + "name": "Photography Cl", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Photography-CL", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Photography-CL/", + "description": "Photography Cl" + }, + { + "id": "th_photogallery", + "name": "Photogallery", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photogallery", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photogallery/", + "description": "Photogallery" + }, + { + "id": "th_photoshoot", + "name": "Photoshoot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photoshoot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photoshoot/", + "description": "Photoshoot" + }, + { + "id": "th_photogenic", + "name": "Photogenic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photogenic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photogenic/", + "description": "Photogenic" + }, + { + "id": "th_artstudio", + "name": "Artstudio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/artstudio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/artstudio/", + "description": "Artstudio" + }, + { + "id": "th_studio", + "name": "Studio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/studio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/studio/", + "description": "Studio" + }, + { + "id": "th_photo", + "name": "Photo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/photo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/photo/", + "description": "Photo" + }, + { + "id": "th_cleanphotography", + "name": "Cleanphotography", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cleanphotography", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cleanphotography/", + "description": "Cleanphotography" + }, + { + "id": "th_role", + "name": "Role", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Role", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Role/", + "description": "Free Responsive Bootstrap 4 Photography Website Template" + }, + { + "id": "th_studiova", + "name": "Studiova", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Studiova", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Studiova/", + "description": "Studiova" + }, + { + "id": "th_istudio", + "name": "Istudio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/iStudio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/iStudio/", + "description": "Istudio" + }, + { + "id": "da_amaze_photography_bootstrap_html5_template", + "name": "Amaze Photography Bootstrap Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "amaze-photography-bootstrap-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/amaze-photography-bootstrap-html5-template/", + "description": "Amaze Photography Bootstrap Html5 Template" + }, + { + "id": "da_css3_photo_two", + "name": "Css3 Photo Two", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "css3-photo-two", + "preview_url": "https://dawidolko.github.io/Website-Templates/css3-photo-two/", + "description": "Css3 Photo Two" + }, + { + "id": "da_iclick_photography_bootstrap_free_website_template", + "name": "Iclick Photography Bootstrap Free Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "iclick-photography-bootstrap-free-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/iclick-photography-bootstrap-free-website-template/", + "description": "Iclick Photography Bootstrap Free Website Template" + }, + { + "id": "da_photo_art", + "name": "Photo Art", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "photo-art", + "preview_url": "https://dawidolko.github.io/Website-Templates/photo-art/", + "description": "Photo Art" + }, + { + "id": "da_scenic_photo", + "name": "Scenic Photo", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "scenic-photo", + "preview_url": "https://dawidolko.github.io/Website-Templates/scenic-photo/", + "description": "Scenic Photo" + } + ] + }, + { + "id": "legal", + "name": "Юридические", + "icon": "briefcase", + "templates": [ + { + "id": "th_justice", + "name": "Justice", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Justice", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Justice/", + "description": "Justice" + }, + { + "id": "th_lawyer", + "name": "Lawyer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lawyer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lawyer/", + "description": "Lawyer" + }, + { + "id": "th_justlaw", + "name": "Justlaw", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/justlaw", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/justlaw/", + "description": "Justlaw" + }, + { + "id": "th_texas_lawyer_2", + "name": "Texas Lawyer 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Texas-Lawyer-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Texas-Lawyer-2/", + "description": "Texas Lawyer 2" + }, + { + "id": "th_thelawyer", + "name": "Thelawyer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/thelawyer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/thelawyer/", + "description": "Thelawyer" + }, + { + "id": "th_star_law", + "name": "Star Law", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/star-law", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/star-law/", + "description": "Star Law" + }, + { + "id": "th_lawride", + "name": "Lawride", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lawride", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lawride/", + "description": "Lawride" + }, + { + "id": "th_ariclaw", + "name": "Ariclaw", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ariclaw", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ariclaw/", + "description": "Ariclaw" + }, + { + "id": "th_lawful", + "name": "Lawful", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lawful", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lawful/", + "description": "Lawful" + } + ] + }, + { + "id": "other", + "name": "Разное", + "icon": "chart-bar", + "templates": [ + { + "id": "th_gulp_npm_mainfiles", + "name": "Gulp Npm Mainfiles", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gulp-npm-mainfiles", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gulp-npm-mainfiles/", + "description": "Push \"mainfiles\" from node_modules to a specific folder" + }, + { + "id": "th_rellax", + "name": "Rellax", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rellax", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rellax/", + "description": "jQuery Rellax Plugin - Parallax awesomeness" + }, + { + "id": "th_ava", + "name": "Ava", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ava", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ava/", + "description": "Ava" + }, + { + "id": "th_100_template_list", + "name": "100 Template List", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/100-template-list", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/100-template-list/", + "description": "100 Template List" + }, + { + "id": "th_electro", + "name": "Electro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/electro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/electro/", + "description": "Electro" + }, + { + "id": "th_mazer", + "name": "Mazer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mazer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mazer/", + "description": "Mazer" + }, + { + "id": "th_titan", + "name": "Titan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/titan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/titan/", + "description": "Multipurpose HTML5 Website Template" + }, + { + "id": "th_ogani", + "name": "Ogani", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ogani", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ogani/", + "description": "Ogani" + }, + { + "id": "th_garo_estate", + "name": "Garo Estate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/garo-estate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/garo-estate/", + "description": "Garo Estate" + }, + { + "id": "th_darkpan", + "name": "Darkpan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/darkpan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/darkpan/", + "description": "Darkpan" + }, + { + "id": "th_constra", + "name": "Constra", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/constra", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/constra/", + "description": "Constra" + }, + { + "id": "th_amado", + "name": "Amado", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/amado", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/amado/", + "description": "Amado" + }, + { + "id": "th_timer_html", + "name": "Timer Html", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/timer-html", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/timer-html/", + "description": "Timer Html" + }, + { + "id": "th_purple_react", + "name": "Purple React", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/purple-react", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/purple-react/", + "description": "Purple React" + }, + { + "id": "th_dashmin", + "name": "Dashmin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dashmin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dashmin/", + "description": "Dashmin" + }, + { + "id": "th_anime", + "name": "Anime", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/anime", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/anime/", + "description": "Anime" + }, + { + "id": "th_awesome1", + "name": "Awesome1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/awesome1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/awesome1/", + "description": "Awesome1" + }, + { + "id": "th_skydash", + "name": "Skydash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/skydash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/skydash/", + "description": "Skydash" + }, + { + "id": "th_dashtreme", + "name": "Dashtreme", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dashtreme", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dashtreme/", + "description": "Dashtreme" + }, + { + "id": "th_atlas", + "name": "Atlas", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/atlas", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/atlas/", + "description": "Atlas" + }, + { + "id": "th_asentus", + "name": "Asentus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Asentus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Asentus/", + "description": "Asentus" + }, + { + "id": "th_awesplash", + "name": "Awesplash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/awesplash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/awesplash/", + "description": "Awesplash" + }, + { + "id": "th_flusk", + "name": "Flusk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Flusk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Flusk/", + "description": "Flusk - A Responsive Multi-purpose Website Template with bootstrap 3" + }, + { + "id": "th_restoran", + "name": "Restoran", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/restoran", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/restoran/", + "description": "Restoran" + }, + { + "id": "th_notes_html_template", + "name": "Notes Html Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/notes-html-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/notes-html-template/", + "description": "Notes Html Template" + }, + { + "id": "th_arsha", + "name": "Arsha", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/arsha", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/arsha/", + "description": "Arsha" + }, + { + "id": "th_quixlab", + "name": "Quixlab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/quixlab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/quixlab/", + "description": "Quixlab" + }, + { + "id": "th_profile_bootstrap", + "name": "Profile Bootstrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/profile-bootstrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/profile-bootstrap/", + "description": "Profile Bootstrap" + }, + { + "id": "th_made", + "name": "Made", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/made", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/made/", + "description": "Made" + }, + { + "id": "th_royal", + "name": "Royal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/royal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/royal/", + "description": "Royal" + }, + { + "id": "th_meetme", + "name": "Meetme", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/meetme", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/meetme/", + "description": "Meetme" + }, + { + "id": "th_wish", + "name": "Wish", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wish", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wish/", + "description": "Wish" + }, + { + "id": "th_karl", + "name": "Karl", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/karl", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/karl/", + "description": "Karl" + }, + { + "id": "th_clark", + "name": "Clark", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/clark", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/clark/", + "description": "Clark" + }, + { + "id": "th_sept", + "name": "Sept", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sept", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sept/", + "description": "Sept" + }, + { + "id": "th_megakit", + "name": "Megakit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/megakit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/megakit/", + "description": "Megakit" + }, + { + "id": "th_white_pro", + "name": "White Pro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/white_pro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/white_pro/", + "description": "White Pro" + }, + { + "id": "th_devfolio", + "name": "Devfolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/devfolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/devfolio/", + "description": "Devfolio" + }, + { + "id": "th_cyborg", + "name": "Cyborg", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cyborg", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cyborg/", + "description": "Cyborg" + }, + { + "id": "th_cryptocoin", + "name": "Cryptocoin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/CryptoCoin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/CryptoCoin/", + "description": "Cryptocoin" + }, + { + "id": "th_proman", + "name": "Proman", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/proman", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/proman/", + "description": "Proman" + }, + { + "id": "th_jackson", + "name": "Jackson", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jackson", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jackson/", + "description": "Jackson" + }, + { + "id": "th_original", + "name": "Original", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/original", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/original/", + "description": "Original" + }, + { + "id": "th_elegant", + "name": "Elegant", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elegant", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elegant/", + "description": "Elegant" + }, + { + "id": "th_material_able", + "name": "Material Able", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material_able", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material_able/", + "description": "Material Able" + }, + { + "id": "th_tale", + "name": "Tale", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tale", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tale/", + "description": "Tale" + }, + { + "id": "th_finanza", + "name": "Finanza", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/finanza", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/finanza/", + "description": "Finanza" + }, + { + "id": "th_industrio", + "name": "Industrio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Industrio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Industrio/", + "description": "Industrio" + }, + { + "id": "th_furn", + "name": "Furn.", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/furn.", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/furn./", + "description": "Furn." + }, + { + "id": "th_elate", + "name": "Elate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elate/", + "description": "Elate" + }, + { + "id": "th_boxer", + "name": "Boxer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/boxer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/boxer/", + "description": "Boxer" + }, + { + "id": "th_click", + "name": "Click", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/click", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/click/", + "description": "Responsive Site" + }, + { + "id": "th_famms", + "name": "Famms", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/famms", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/famms/", + "description": "Famms" + }, + { + "id": "th_arcade", + "name": "Arcade", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/arcade", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/arcade/", + "description": "Arcade" + }, + { + "id": "th_edu_meeting", + "name": "Edu Meeting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/edu-meeting", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/edu-meeting/", + "description": "Edu Meeting" + }, + { + "id": "th_able_pro", + "name": "Able Pro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/able_pro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/able_pro/", + "description": "Able Pro" + }, + { + "id": "th_jobfinderportal", + "name": "Jobfinderportal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jobfinderportal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jobfinderportal/", + "description": "Jobfinderportal" + }, + { + "id": "th_pluto", + "name": "Pluto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pluto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pluto/", + "description": "Pluto" + }, + { + "id": "th_free_bundle_2022", + "name": "Free Bundle 2022", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/free-bundle-2022", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/free-bundle-2022/", + "description": "Free Bundle 2022" + }, + { + "id": "th_a_world", + "name": "A World", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/a-world", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/a-world/", + "description": "A World" + }, + { + "id": "th_gardener", + "name": "Gardener", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gardener", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gardener/", + "description": "Gardener" + }, + { + "id": "th_milky", + "name": "Milky", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/milky", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/milky/", + "description": "Milky" + }, + { + "id": "th_prixima", + "name": "Prixima", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/prixima", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/prixima/", + "description": "Prixima" + }, + { + "id": "th_flat_able", + "name": "Flat Able", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/flat_able", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/flat_able/", + "description": "Flat Able" + }, + { + "id": "th_solartec", + "name": "Solartec", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/solartec", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/solartec/", + "description": "Solartec" + }, + { + "id": "th_fruitkha", + "name": "Fruitkha", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fruitkha", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fruitkha/", + "description": "Fruitkha" + }, + { + "id": "th_karma", + "name": "Karma", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/karma", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/karma/", + "description": "Karma" + }, + { + "id": "th_eflyer", + "name": "Eflyer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eflyer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eflyer/", + "description": "Eflyer" + }, + { + "id": "th_focus_2", + "name": "Focus 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/focus-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/focus-2/", + "description": "Focus 2" + }, + { + "id": "th_100_template_bundle", + "name": "100 Template Bundle", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/100-template-bundle", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/100-template-bundle/", + "description": "100 Template Bundle" + }, + { + "id": "th_ashion", + "name": "Ashion", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ashion", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ashion/", + "description": "Ashion" + }, + { + "id": "th_baker", + "name": "Baker", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/baker", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/baker/", + "description": "Baker" + }, + { + "id": "th_drivin", + "name": "Drivin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/drivin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/drivin/", + "description": "Drivin" + }, + { + "id": "th_keto", + "name": "Keto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/keto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/keto/", + "description": "Keto" + }, + { + "id": "th_videograph", + "name": "Videograph", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/videograph", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/videograph/", + "description": "Videograph" + }, + { + "id": "th_kidkinder", + "name": "Kidkinder", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kidkinder", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kidkinder/", + "description": "Kidkinder" + }, + { + "id": "th_patrix", + "name": "Patrix", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/patrix", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/patrix/", + "description": "Patrix" + }, + { + "id": "th_majestic_2", + "name": "Majestic 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/majestic-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/majestic-2/", + "description": "Majestic 2" + }, + { + "id": "th_novena", + "name": "Novena", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/novena", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/novena/", + "description": "Novena" + }, + { + "id": "th_chain", + "name": "Chain", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/chain", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/chain/", + "description": "Chain" + }, + { + "id": "th_mega_able", + "name": "Mega Able", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mega_able", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mega_able/", + "description": "Mega Able" + }, + { + "id": "th_mark", + "name": "Mark", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mark", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mark/", + "description": "Mark" + }, + { + "id": "th_stride", + "name": "Stride", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stride", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stride/", + "description": "Stride" + }, + { + "id": "th_makan", + "name": "Makan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/makan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/makan/", + "description": "Makan" + }, + { + "id": "th_sona", + "name": "Sona", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sona", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sona/", + "description": "Sona" + }, + { + "id": "th_kider", + "name": "Kider", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kider", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kider/", + "description": "Kider" + }, + { + "id": "th_dgcom", + "name": "Dgcom", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dgcom", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dgcom/", + "description": "Dgcom" + }, + { + "id": "th_chariteam", + "name": "Chariteam", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/chariteam", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/chariteam/", + "description": "Chariteam" + }, + { + "id": "th_insure", + "name": "Insure", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/insure", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/insure/", + "description": "Insure" + }, + { + "id": "th_connect_plus", + "name": "Connect Plus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/connect-plus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/connect-plus/", + "description": "Connect Plus" + }, + { + "id": "th_satner", + "name": "Satner", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/satner", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/satner/", + "description": "Satner" + }, + { + "id": "th_boldo", + "name": "Boldo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/boldo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/boldo/", + "description": "Boldo" + }, + { + "id": "th_footwear", + "name": "Footwear", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/footwear", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/footwear/", + "description": "Footwear" + }, + { + "id": "th_bizconsult", + "name": "Bizconsult", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bizconsult", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bizconsult/", + "description": "Bizconsult" + }, + { + "id": "th_unfold", + "name": "Unfold", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/unfold", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/unfold/", + "description": "Unfold" + }, + { + "id": "th_spica", + "name": "Spica", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/spica", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/spica/", + "description": "Spica" + }, + { + "id": "th_zoofari", + "name": "Zoofari", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/zoofari", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/zoofari/", + "description": "Zoofari" + }, + { + "id": "th_arkitektur", + "name": "Arkitektur", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/arkitektur", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/arkitektur/", + "description": "Arkitektur" + }, + { + "id": "th_soccer", + "name": "Soccer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/soccer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/soccer/", + "description": "Soccer" + }, + { + "id": "th_pavo", + "name": "Pavo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pavo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pavo/", + "description": "Pavo" + }, + { + "id": "th_montana", + "name": "Montana", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/montana", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/montana/", + "description": "Montana" + }, + { + "id": "th_apex", + "name": "Apex", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/apex", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/apex/", + "description": "Apex" + }, + { + "id": "th_gohub", + "name": "Gohub", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gohub", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gohub/", + "description": "Gohub" + }, + { + "id": "th_tinydash", + "name": "Tinydash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tinydash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tinydash/", + "description": "Tinydash" + }, + { + "id": "th_watch_2", + "name": "Watch 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/watch-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/watch-2/", + "description": "Watch 2" + }, + { + "id": "th_mirko", + "name": "Mirko", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mirko", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mirko/", + "description": "Mirko" + }, + { + "id": "th_securex", + "name": "Securex", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/securex", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/securex/", + "description": "Securex" + }, + { + "id": "th_pharma", + "name": "Pharma", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pharma", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pharma/", + "description": "Pharma" + }, + { + "id": "th_sogo", + "name": "Sogo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sogo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sogo/", + "description": "Sogo" + }, + { + "id": "th_crypto", + "name": "Crypto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/crypto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/crypto/", + "description": "Crypto" + }, + { + "id": "th_courier", + "name": "Courier", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/courier", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/courier/", + "description": "Courier" + }, + { + "id": "th_clyde", + "name": "Clyde", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/clyde", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/clyde/", + "description": "Clyde" + }, + { + "id": "th_jadoo", + "name": "Jadoo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jadoo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jadoo/", + "description": "Jadoo" + }, + { + "id": "th_get_ready", + "name": "Get Ready", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/get-ready", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/get-ready/", + "description": "Get Ready" + }, + { + "id": "th_nomad_force", + "name": "Nomad Force", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nomad-force", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nomad-force/", + "description": "Nomad Force" + }, + { + "id": "th_djoz", + "name": "Djoz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Djoz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Djoz/", + "description": "DJoz-Free Template " + }, + { + "id": "th_cakezone", + "name": "Cakezone", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cakezone", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cakezone/", + "description": "Cakezone" + }, + { + "id": "th_logistica", + "name": "Logistica", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/logistica", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/logistica/", + "description": "Logistica" + }, + { + "id": "th_aranoz", + "name": "Aranoz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aranoz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aranoz/", + "description": "Aranoz" + }, + { + "id": "th_aircon", + "name": "Aircon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aircon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aircon/", + "description": "Aircon" + }, + { + "id": "th_welfare", + "name": "Welfare", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/welfare", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/welfare/", + "description": "Welfare" + }, + { + "id": "th_orthoc", + "name": "Orthoc", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/orthoc", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/orthoc/", + "description": "Orthoc" + }, + { + "id": "th_frutika", + "name": "Frutika", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/frutika", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/frutika/", + "description": "Frutika" + }, + { + "id": "th_eiser", + "name": "Eiser", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eiser", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eiser/", + "description": "Eiser" + }, + { + "id": "th_faster", + "name": "Faster", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/faster", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/faster/", + "description": "Faster" + }, + { + "id": "th_soffer", + "name": "Soffer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/soffer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/soffer/", + "description": "Soffer" + }, + { + "id": "th_voler", + "name": "Voler", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/voler", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/voler/", + "description": "Voler" + }, + { + "id": "th_klinik", + "name": "Klinik", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/klinik", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/klinik/", + "description": "Klinik" + }, + { + "id": "th_live_doc", + "name": "Live Doc", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/live-doc", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/live-doc/", + "description": "Live Doc" + }, + { + "id": "th_logisticexpress", + "name": "Logisticexpress", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/logisticexpress", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/logisticexpress/", + "description": "Logisticexpress" + }, + { + "id": "th_builerz", + "name": "Builerz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/builerz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/builerz/", + "description": "Builerz" + }, + { + "id": "th_ace", + "name": "Ace", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ace", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ace/", + "description": "Ace" + }, + { + "id": "th_kards", + "name": "Kards", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kards", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kards/", + "description": "Kards" + }, + { + "id": "th_quantum_able", + "name": "Quantum Able", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/quantum_able", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/quantum_able/", + "description": "Quantum Able" + }, + { + "id": "th_guruable", + "name": "Guruable", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/guruable", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/guruable/", + "description": "Guruable" + }, + { + "id": "th_elen", + "name": "Elen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elen/", + "description": "Elen" + }, + { + "id": "th_violet", + "name": "Violet", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/violet", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/violet/", + "description": "Violet" + }, + { + "id": "th_webuni", + "name": "Webuni", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/webuni", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/webuni/", + "description": "Webuni" + }, + { + "id": "th_kiddos", + "name": "Kiddos", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kiddos", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kiddos/", + "description": "Kiddos" + }, + { + "id": "th_jobentry", + "name": "Jobentry", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jobentry", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jobentry/", + "description": "Jobentry" + }, + { + "id": "th_webuild", + "name": "Webuild", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/webuild", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/webuild/", + "description": "Webuild" + }, + { + "id": "th_direngine", + "name": "Direngine", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/direngine", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/direngine/", + "description": "Direngine" + }, + { + "id": "th_painter", + "name": "Painter", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/painter", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/painter/", + "description": "Painter" + }, + { + "id": "th_onix", + "name": "Onix", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/onix", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/onix/", + "description": "Onix" + }, + { + "id": "th_deluxe", + "name": "Deluxe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/deluxe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/deluxe/", + "description": "Deluxe" + }, + { + "id": "th_aroma", + "name": "Aroma", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aroma", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aroma/", + "description": "Aroma" + }, + { + "id": "th_landmark", + "name": "Landmark", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/landmark", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/landmark/", + "description": "Landmark" + }, + { + "id": "th_zacson", + "name": "Zacson", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/zacson", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/zacson/", + "description": "Zacson" + }, + { + "id": "th_academics", + "name": "Academics", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/academics", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/academics/", + "description": "Academics" + }, + { + "id": "th_sterial", + "name": "Sterial", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sterial", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sterial/", + "description": "Sterial" + }, + { + "id": "th_eduwell", + "name": "Eduwell", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eduwell", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eduwell/", + "description": "Eduwell" + }, + { + "id": "th_pacific", + "name": "Pacific", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pacific", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pacific/", + "description": "Pacific" + }, + { + "id": "th_volt", + "name": "Volt", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/volt", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/volt/", + "description": "Volt" + }, + { + "id": "th_elma", + "name": "Elma", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elma", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elma/", + "description": "Elma" + }, + { + "id": "th_astro_motion", + "name": "Astro Motion", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/astro-motion", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/astro-motion/", + "description": "Astro Motion" + }, + { + "id": "th_knight", + "name": "Knight", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/knight", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/knight/", + "description": "Knight" + }, + { + "id": "th_tasteit", + "name": "Tasteit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tasteit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tasteit/", + "description": "Tasteit" + }, + { + "id": "th_enlight", + "name": "Enlight", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/enlight", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/enlight/", + "description": "Enlight" + }, + { + "id": "th_essence", + "name": "Essence", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/essence", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/essence/", + "description": "Essence" + }, + { + "id": "th_thegrill", + "name": "Thegrill", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/thegrill", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/thegrill/", + "description": "Thegrill" + }, + { + "id": "th_woody", + "name": "Woody", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/woody", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/woody/", + "description": "Woody" + }, + { + "id": "th_tropika", + "name": "Tropika", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tropika", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tropika/", + "description": "Tropika" + }, + { + "id": "th_balay", + "name": "Balay", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/balay", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/balay/", + "description": "Balay" + }, + { + "id": "th_kiddy", + "name": "Kiddy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kiddy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kiddy/", + "description": "Kiddy" + }, + { + "id": "th_traffico", + "name": "Traffico", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/traffico", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/traffico/", + "description": "Traffico" + }, + { + "id": "th_cake", + "name": "Cake", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cake", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cake/", + "description": "Cake" + }, + { + "id": "th_delicious", + "name": "Delicious", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/delicious", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/delicious/", + "description": "Delicious" + }, + { + "id": "th_sprout", + "name": "Sprout", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Sprout", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Sprout/", + "description": "Comimg Soon Template" + }, + { + "id": "th_job_listing", + "name": "Job Listing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/job-listing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/job-listing/", + "description": "Job Listing" + }, + { + "id": "th_fox", + "name": "Fox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fox/", + "description": "Fox" + }, + { + "id": "th_phozogy", + "name": "Phozogy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/phozogy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/phozogy/", + "description": "Phozogy" + }, + { + "id": "th_noah", + "name": "Noah", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/noah", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/noah/", + "description": "Noah" + }, + { + "id": "th_guruable2", + "name": "Guruable2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/guruable2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/guruable2/", + "description": "Guruable2" + }, + { + "id": "th_accounting", + "name": "Accounting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/accounting", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/accounting/", + "description": "Accounting" + }, + { + "id": "th_ensurance", + "name": "Ensurance", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ensurance", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ensurance/", + "description": "Ensurance" + }, + { + "id": "th_alazea", + "name": "Alazea", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/alazea", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/alazea/", + "description": "Alazea" + }, + { + "id": "th_sonar", + "name": "Sonar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sonar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sonar/", + "description": "Sonar" + }, + { + "id": "th_rezume", + "name": "Rezume", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rezume", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rezume/", + "description": "Rezume" + }, + { + "id": "th_fashi", + "name": "Fashi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fashi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fashi/", + "description": "Fashi" + }, + { + "id": "th_voyage_2", + "name": "Voyage 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/voyage-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/voyage-2/", + "description": "Voyage 2" + }, + { + "id": "th_docmed", + "name": "Docmed", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/docmed", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/docmed/", + "description": "Docmed" + }, + { + "id": "th_charifit", + "name": "Charifit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/charifit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/charifit/", + "description": "Charifit" + }, + { + "id": "th_loan", + "name": "Loan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/loan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/loan/", + "description": "Loan" + }, + { + "id": "th_digimedia", + "name": "Digimedia", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/digimedia", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/digimedia/", + "description": "Digimedia" + }, + { + "id": "th_studylab", + "name": "Studylab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/studylab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/studylab/", + "description": "Studylab" + }, + { + "id": "th_seapalace", + "name": "Seapalace", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/seapalace", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/seapalace/", + "description": "Seapalace" + }, + { + "id": "th_corso", + "name": "Corso", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/corso", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/corso/", + "description": "Corso" + }, + { + "id": "th_tasty", + "name": "Tasty", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tasty", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tasty/", + "description": "Tasty" + }, + { + "id": "th_timezone", + "name": "Timezone", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/timezone", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/timezone/", + "description": "Timezone" + }, + { + "id": "th_collab", + "name": "Collab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/collab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/collab/", + "description": "Collab" + }, + { + "id": "th_megakit_2", + "name": "Megakit 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/megakit-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/megakit-2/", + "description": "Megakit 2" + }, + { + "id": "th_eclipse", + "name": "Eclipse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eclipse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eclipse/", + "description": "Eclipse" + }, + { + "id": "th_epnweb", + "name": "Epnweb", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/epnweb", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/epnweb/", + "description": "Epnweb" + }, + { + "id": "th_brber", + "name": "Brber", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/brber", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/brber/", + "description": "Brber" + }, + { + "id": "th_tivo", + "name": "Tivo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tivo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tivo/", + "description": "Tivo" + }, + { + "id": "th_jobboard", + "name": "Jobboard", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jobboard", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jobboard/", + "description": "Jobboard" + }, + { + "id": "th_servion", + "name": "Servion", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/servion", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/servion/", + "description": "Servion" + }, + { + "id": "th_jony", + "name": "Jony", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jony", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jony/", + "description": "Jony" + }, + { + "id": "th_theplaza", + "name": "Theplaza", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/theplaza", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/theplaza/", + "description": "Theplaza" + }, + { + "id": "th_manup", + "name": "Manup", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/manup", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/manup/", + "description": "Manup" + }, + { + "id": "th_material_kit_2", + "name": "Material Kit 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-kit-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-kit-2/", + "description": "Material Kit 2" + }, + { + "id": "th_edustage", + "name": "Edustage", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/edustage", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/edustage/", + "description": "Edustage" + }, + { + "id": "th_believe", + "name": "Believe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/believe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/believe/", + "description": "Believe" + }, + { + "id": "th_desi_2", + "name": "Desi 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/desi-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/desi-2/", + "description": "Desi 2" + }, + { + "id": "th_medic", + "name": "Medic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medic/", + "description": "Medic" + }, + { + "id": "th_gemdev", + "name": "Gemdev", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gemdev", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gemdev/", + "description": "Gemdev" + }, + { + "id": "th_vizew", + "name": "Vizew", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vizew", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vizew/", + "description": "Vizew" + }, + { + "id": "th_little_squirrel", + "name": "Little Squirrel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/little-squirrel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/little-squirrel/", + "description": "Little Squirrel" + }, + { + "id": "th_etrain", + "name": "Etrain", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/etrain", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/etrain/", + "description": "Etrain" + }, + { + "id": "th_marshmallow", + "name": "Marshmallow", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/marshmallow", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/marshmallow/", + "description": "Marshmallow" + }, + { + "id": "th_laundry", + "name": "Laundry", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/laundry", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/laundry/", + "description": "Laundry" + }, + { + "id": "th_ezuca", + "name": "Ezuca", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ezuca", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ezuca/", + "description": "Ezuca" + }, + { + "id": "th_tulen", + "name": "Tulen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tulen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tulen/", + "description": "Tulen" + }, + { + "id": "th_spify", + "name": "Spify", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/spify", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/spify/", + "description": "Spify" + }, + { + "id": "th_ronaldo", + "name": "Ronaldo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ronaldo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ronaldo/", + "description": "Ronaldo" + }, + { + "id": "th_fundraiser", + "name": "Fundraiser", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fundraiser", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fundraiser/", + "description": "Fundraiser" + }, + { + "id": "th_sevi", + "name": "Sevi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sevi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sevi/", + "description": "Sevi" + }, + { + "id": "th_safia", + "name": "Safia", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Safia", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Safia/", + "description": "Safia" + }, + { + "id": "th_educenter", + "name": "Educenter", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/educenter", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/educenter/", + "description": "Educenter" + }, + { + "id": "th_rhea", + "name": "Rhea", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Rhea", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Rhea/", + "description": "Rhea" + }, + { + "id": "th_equipo", + "name": "Equipo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/equipo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/equipo/", + "description": "Equipo" + }, + { + "id": "th_dtox", + "name": "Dtox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dtox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dtox/", + "description": "Dtox" + }, + { + "id": "th_nitro2", + "name": "Nitro2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nitro2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nitro2/", + "description": "Nitro2" + }, + { + "id": "th_klean", + "name": "Klean", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/klean", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/klean/", + "description": "Live link" + }, + { + "id": "th_villa", + "name": "Villa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/villa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/villa/", + "description": "Villa" + }, + { + "id": "th_harbor_lights", + "name": "Harbor Lights", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/harbor-lights", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/harbor-lights/", + "description": "Harbor Lights" + }, + { + "id": "th_beko", + "name": "Beko", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/beko", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/beko/", + "description": "Beko" + }, + { + "id": "th_melan", + "name": "Melan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/melan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/melan/", + "description": "Melan" + }, + { + "id": "th_greenhost", + "name": "Greenhost", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/greenhost", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/greenhost/", + "description": "Greenhost" + }, + { + "id": "th_edu_prix", + "name": "Edu Prix", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/edu-prix", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/edu-prix/", + "description": "Edu Prix" + }, + { + "id": "th_winkel", + "name": "Winkel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/winkel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/winkel/", + "description": "Winkel" + }, + { + "id": "th_burgerking", + "name": "Burgerking", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/burgerking", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/burgerking/", + "description": "Burgerking" + }, + { + "id": "th_next_page", + "name": "Next Page", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/next-page", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/next-page/", + "description": "Next Page" + }, + { + "id": "th_marian", + "name": "Marian", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/marian", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/marian/", + "description": "Marian" + }, + { + "id": "th_azzara", + "name": "Azzara", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/azzara", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/azzara/", + "description": "Azzara" + }, + { + "id": "th_nubis", + "name": "Nubis", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nubis", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nubis/", + "description": "Nubis" + }, + { + "id": "th_petsitting", + "name": "Petsitting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/petsitting", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/petsitting/", + "description": "Petsitting" + }, + { + "id": "th_bitcypo", + "name": "Bitcypo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bitcypo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bitcypo/", + "description": "Bitcypo" + }, + { + "id": "th_feliciano", + "name": "Feliciano", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/feliciano", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/feliciano/", + "description": "Feliciano" + }, + { + "id": "th_givehope", + "name": "Givehope", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/givehope", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/givehope/", + "description": "Givehope" + }, + { + "id": "th_unicat", + "name": "Unicat", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/unicat", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/unicat/", + "description": "Unicat" + }, + { + "id": "th_classimax", + "name": "Classimax", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/classimax", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/classimax/", + "description": "Bootstrap 4 classified ad website template" + }, + { + "id": "th_palatin", + "name": "Palatin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/palatin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/palatin/", + "description": "Palatin" + }, + { + "id": "th_aler", + "name": "Aler", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aler", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aler/", + "description": "Aler" + }, + { + "id": "th_motto", + "name": "Motto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/motto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/motto/", + "description": "Motto" + }, + { + "id": "th_wilcon", + "name": "Wilcon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wilcon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wilcon/", + "description": "Wilcon" + }, + { + "id": "th_browny", + "name": "Browny", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/browny", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/browny/", + "description": "Browny" + }, + { + "id": "th_raising", + "name": "Raising", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/raising", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/raising/", + "description": "Raising" + }, + { + "id": "th_art_museum", + "name": "Art Museum", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/art-museum", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/art-museum/", + "description": "Art Museum" + }, + { + "id": "th_elegence", + "name": "Elegence", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elegence", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elegence/", + "description": "Elegence" + }, + { + "id": "th_medico", + "name": "Medico", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medico", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medico/", + "description": "Medico" + }, + { + "id": "th_pharmative", + "name": "Pharmative", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pharmative", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pharmative/", + "description": "Pharmative" + }, + { + "id": "th_adward", + "name": "Adward", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adward", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adward/", + "description": "Adward" + }, + { + "id": "th_homeland", + "name": "Homeland", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/homeland", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/homeland/", + "description": "Homeland" + }, + { + "id": "th_hvac", + "name": "Hvac", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hvac", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hvac/", + "description": "Hvac" + }, + { + "id": "th_known", + "name": "Known", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/known", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/known/", + "description": "Known" + }, + { + "id": "th_elearn", + "name": "Elearn", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elearn", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elearn/", + "description": "Elearn" + }, + { + "id": "th_medlife", + "name": "Medlife", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medlife", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medlife/", + "description": "Medlife" + }, + { + "id": "th_alimie", + "name": "Alimie", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/alimie", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/alimie/", + "description": "Alimie" + }, + { + "id": "th_burger", + "name": "Burger", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/burger", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/burger/", + "description": "Burger" + }, + { + "id": "th_zinc", + "name": "Zinc", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/zinc", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/zinc/", + "description": "Zinc" + }, + { + "id": "th_executive", + "name": "Executive", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/executive", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/executive/", + "description": "Executive" + }, + { + "id": "th_revo", + "name": "Revo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/revo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/revo/", + "description": "Revo" + }, + { + "id": "th_neumorphism_ui", + "name": "Neumorphism Ui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/neumorphism-ui", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/neumorphism-ui/", + "description": "Neumorphism Ui" + }, + { + "id": "th_lifetrakr", + "name": "Lifetrakr", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lifetrakr", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lifetrakr/", + "description": "Lifetrakr" + }, + { + "id": "th_webhost", + "name": "Webhost", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/webhost", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/webhost/", + "description": "Webhost" + }, + { + "id": "th_ecoverde", + "name": "Ecoverde", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ecoverde", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ecoverde/", + "description": "Ecoverde" + }, + { + "id": "th_mona", + "name": "Mona", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mona", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mona/", + "description": "Mona" + }, + { + "id": "th_sensive", + "name": "Sensive", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sensive", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sensive/", + "description": "Sensive" + }, + { + "id": "th_vacayhome", + "name": "Vacayhome", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vacayhome", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vacayhome/", + "description": "Vacayhome" + }, + { + "id": "th_depot", + "name": "Depot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/depot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/depot/", + "description": "Depot" + }, + { + "id": "th_rage", + "name": "Rage", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rage", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rage/", + "description": "Rage" + }, + { + "id": "th_theriver", + "name": "Theriver", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/theriver", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/theriver/", + "description": "Theriver" + }, + { + "id": "th_devfolio2", + "name": "Devfolio2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/devfolio2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/devfolio2/", + "description": "Devfolio2" + }, + { + "id": "th_yummy", + "name": "Yummy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yummy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yummy/", + "description": "Yummy" + }, + { + "id": "th_genius", + "name": "Genius", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/genius", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/genius/", + "description": "Genius" + }, + { + "id": "th_landscaper", + "name": "Landscaper", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/landscaper", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/landscaper/", + "description": "Landscaper" + }, + { + "id": "th_evans", + "name": "Evans", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/evans", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/evans/", + "description": "Evans" + }, + { + "id": "th_zoufarm", + "name": "Zoufarm", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/zouFarm", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/zouFarm/", + "description": "Zoufarm" + }, + { + "id": "th_places", + "name": "Places", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/places", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/places/", + "description": "Places" + }, + { + "id": "th_eatery_new", + "name": "Eatery New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eatery-new", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eatery-new/", + "description": "Eatery New" + }, + { + "id": "th_edumark", + "name": "Edumark", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/edumark", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/edumark/", + "description": "Edumark" + }, + { + "id": "th_specer", + "name": "Specer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/specer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/specer/", + "description": "Specer" + }, + { + "id": "th_agenda", + "name": "Agenda", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/agenda", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/agenda/", + "description": "Agenda" + }, + { + "id": "th_square", + "name": "Square", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/square", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/square/", + "description": "Square" + }, + { + "id": "th_logic", + "name": "Logic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/logic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/logic/", + "description": "Logic" + }, + { + "id": "th_roberto", + "name": "Roberto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/roberto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/roberto/", + "description": "Roberto" + }, + { + "id": "th_world", + "name": "World", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/world", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/world/", + "description": "World" + }, + { + "id": "th_royal2", + "name": "Royal2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/royal2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/royal2/", + "description": "Royal2" + }, + { + "id": "th_minimus", + "name": "Minimus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/minimus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/minimus/", + "description": "Minimus" + }, + { + "id": "th_jober_desk", + "name": "Jober Desk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jober-desk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jober-desk/", + "description": "Jober Desk" + }, + { + "id": "th_caviar", + "name": "Caviar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/caviar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/caviar/", + "description": "Caviar" + }, + { + "id": "th_stated", + "name": "Stated", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stated", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stated/", + "description": "Stated" + }, + { + "id": "th_podca", + "name": "Podca", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/podca", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/podca/", + "description": "Podca" + }, + { + "id": "th_pretty", + "name": "Pretty", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pretty", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pretty/", + "description": "Pretty" + }, + { + "id": "th_cryptos", + "name": "Cryptos", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cryptos", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cryptos/", + "description": "Cryptos" + }, + { + "id": "th_roofing", + "name": "Roofing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/roofing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/roofing/", + "description": "Roofing" + }, + { + "id": "th_eduland", + "name": "Eduland", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eduland", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eduland/", + "description": "Eduland" + }, + { + "id": "th_nupital", + "name": "Nupital", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Nupital", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Nupital/", + "description": "Nupital" + }, + { + "id": "th_marvel", + "name": "Marvel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/marvel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/marvel/", + "description": "Marvel" + }, + { + "id": "th_ronin", + "name": "Ronin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ronin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ronin/", + "description": "Ronin" + }, + { + "id": "th_dimension", + "name": "Dimension", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dimension", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dimension/", + "description": "Dimension" + }, + { + "id": "th_sunshine", + "name": "Sunshine", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sunshine", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sunshine/", + "description": "Sunshine" + }, + { + "id": "th_infinity", + "name": "Infinity", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/infinity", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/infinity/", + "description": "Infinity" + }, + { + "id": "th_findstate", + "name": "Findstate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/findstate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/findstate/", + "description": "Findstate" + }, + { + "id": "th_humanresources", + "name": "Humanresources", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/humanresources", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/humanresources/", + "description": "Humanresources" + }, + { + "id": "th_mosaic", + "name": "Mosaic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mosaic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mosaic/", + "description": "Mosaic" + }, + { + "id": "th_fanadesh", + "name": "Fanadesh", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fanadesh", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fanadesh/", + "description": "Fanadesh" + }, + { + "id": "th_boto", + "name": "Boto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/boto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/boto/", + "description": "Boto" + }, + { + "id": "th_purple_buzz", + "name": "Purple Buzz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/purple-buzz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/purple-buzz/", + "description": "Purple Buzz" + }, + { + "id": "th_covido", + "name": "Covido", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/covido", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/covido/", + "description": "Covido" + }, + { + "id": "th_waterboat", + "name": "Waterboat", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/waterboat", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/waterboat/", + "description": "Waterboat" + }, + { + "id": "th_mdb", + "name": "Mdb", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mdb", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mdb/", + "description": "Mdb" + }, + { + "id": "th_elit", + "name": "Elit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elit/", + "description": "Elit" + }, + { + "id": "th_credit", + "name": "Credit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/credit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/credit/", + "description": "Credit" + }, + { + "id": "th_logis", + "name": "Logis", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/logis", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/logis/", + "description": "Logis" + }, + { + "id": "th_wiser", + "name": "Wiser", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wiser", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wiser/", + "description": "Wiser" + }, + { + "id": "th_author_colorlib", + "name": "Author Colorlib", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/author-colorlib", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/author-colorlib/", + "description": "Author Colorlib" + }, + { + "id": "th_dente", + "name": "Dente", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dente", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dente/", + "description": "Dente" + }, + { + "id": "th_staging", + "name": "Staging", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/staging", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/staging/", + "description": "Staging" + }, + { + "id": "th_rettro", + "name": "Rettro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rettro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rettro/", + "description": "Rettro" + }, + { + "id": "th_jobest", + "name": "Jobest", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jobest", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jobest/", + "description": "Jobest" + }, + { + "id": "th_yavin", + "name": "Yavin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yavin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yavin/", + "description": "Yavin" + }, + { + "id": "th_bino", + "name": "Bino", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bino", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bino/", + "description": "Bino" + }, + { + "id": "th_logistico", + "name": "Logistico", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/logistico", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/logistico/", + "description": "Logistico" + }, + { + "id": "th_mediplus", + "name": "Mediplus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mediplus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mediplus/", + "description": "Mediplus" + }, + { + "id": "th_jonson", + "name": "Jonson", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jonson", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jonson/", + "description": "Jonson" + }, + { + "id": "th_majestic", + "name": "Majestic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/majestic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/majestic/", + "description": "Majestic" + }, + { + "id": "th_hesed", + "name": "Hesed", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hesed", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hesed/", + "description": "Hesed" + }, + { + "id": "th_louie", + "name": "Louie", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/louie", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/louie/", + "description": "Louie" + }, + { + "id": "th_bizpro1", + "name": "Bizpro1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bizpro1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bizpro1/", + "description": "Bizpro1" + }, + { + "id": "th_miri_ui", + "name": "Miri Ui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/miri-ui", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/miri-ui/", + "description": "Miri Ui" + }, + { + "id": "th_arclabs", + "name": "Arclabs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/arclabs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/arclabs/", + "description": "Arclabs" + }, + { + "id": "th_bocor", + "name": "Bocor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bocor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bocor/", + "description": "Bocor" + }, + { + "id": "th_royalestate", + "name": "Royalestate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/royalestate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/royalestate/", + "description": "Royalestate" + }, + { + "id": "th_stayhome", + "name": "Stayhome", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stayhome", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stayhome/", + "description": "Stayhome" + }, + { + "id": "th_conference_cl", + "name": "Conference Cl", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/conference-CL", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/conference-CL/", + "description": "Conference Cl" + }, + { + "id": "th_civic", + "name": "Civic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/civic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/civic/", + "description": "Civic" + }, + { + "id": "th_listing", + "name": "Listing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/listing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/listing/", + "description": "Listing" + }, + { + "id": "th_epitome", + "name": "Epitome", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/epitome", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/epitome/", + "description": "Epitome" + }, + { + "id": "th_nikki", + "name": "Nikki", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nikki", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nikki/", + "description": "Nikki" + }, + { + "id": "th_ahana", + "name": "Ahana", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ahana", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ahana/", + "description": "Ahana" + }, + { + "id": "th_garage", + "name": "Garage", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/garage", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/garage/", + "description": "Garage" + }, + { + "id": "th_kairos", + "name": "Kairos", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kairos", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kairos/", + "description": "Kairos" + }, + { + "id": "th_environmentalorganization", + "name": "Environmentalorganization", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/environmentalorganization", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/environmentalorganization/", + "description": "Environmentalorganization" + }, + { + "id": "th_safs", + "name": "Safs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/safs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/safs/", + "description": "Safs" + }, + { + "id": "th_activitar", + "name": "Activitar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/activitar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/activitar/", + "description": "Activitar" + }, + { + "id": "th_kross", + "name": "Kross", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kross", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kross/", + "description": "Kross" + }, + { + "id": "th_exclusivity", + "name": "Exclusivity", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/exclusivity", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/exclusivity/", + "description": "For demo and downloads go to this link:" + }, + { + "id": "th_vortex", + "name": "Vortex", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vortex", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vortex/", + "description": "Vortex" + }, + { + "id": "th_invits", + "name": "Invits", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/invits", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/invits/", + "description": "Invits" + }, + { + "id": "th_lifecoach", + "name": "Lifecoach", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lifecoach", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lifecoach/", + "description": "Lifecoach" + }, + { + "id": "th_pato", + "name": "Pato", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pato", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pato/", + "description": "Pato" + }, + { + "id": "th_job_board_2", + "name": "Job Board 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/job-board-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/job-board-2/", + "description": "Job Board 2" + }, + { + "id": "th_yummy2", + "name": "Yummy2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yummy2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yummy2/", + "description": "Yummy2" + }, + { + "id": "th_aesthetic", + "name": "Aesthetic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aesthetic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aesthetic/", + "description": "Aesthetic" + }, + { + "id": "th_joson", + "name": "Joson", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/joson", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/joson/", + "description": "Joson" + }, + { + "id": "th_deerhost", + "name": "Deerhost", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/deerhost", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/deerhost/", + "description": "Deerhost" + }, + { + "id": "th_wed", + "name": "Wed", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wed", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wed/", + "description": "Wed" + }, + { + "id": "th_gutim", + "name": "Gutim", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gutim", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gutim/", + "description": "Gutim" + }, + { + "id": "th_dominic", + "name": "Dominic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dominic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dominic/", + "description": "Dominic" + }, + { + "id": "th_watch", + "name": "Watch", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/watch", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/watch/", + "description": "Watch" + }, + { + "id": "th_medino", + "name": "Medino", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medino", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medino/", + "description": "Medino" + }, + { + "id": "th_drpro", + "name": "Drpro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/drpro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/drpro/", + "description": "Drpro" + }, + { + "id": "th_savory", + "name": "Savory", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Savory", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Savory/", + "description": "Savory" + }, + { + "id": "th_mixtape", + "name": "Mixtape", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mixtape", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mixtape/", + "description": "Mixtape" + }, + { + "id": "th_ninestars", + "name": "Ninestars", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ninestars", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ninestars/", + "description": "Ninestars" + }, + { + "id": "th_meranda", + "name": "Meranda", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/meranda", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/meranda/", + "description": "Meranda" + }, + { + "id": "th_be_one", + "name": "Be One", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/be_one", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/be_one/", + "description": "Be One" + }, + { + "id": "th_cohost", + "name": "Cohost", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cohost", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cohost/", + "description": "Cohost" + }, + { + "id": "th_directing", + "name": "Directing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/directing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/directing/", + "description": "Directing" + }, + { + "id": "th_moderna", + "name": "Moderna", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/moderna", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/moderna/", + "description": "Moderna" + }, + { + "id": "th_trafalgar", + "name": "Trafalgar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trafalgar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trafalgar/", + "description": "Trafalgar" + }, + { + "id": "th_christmas_email", + "name": "Christmas Email", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/christmas-email", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/christmas-email/", + "description": "Christmas Email - A Responsive Christmas Email Template to increase your Christmas sells instantly!" + }, + { + "id": "th_kanun", + "name": "Kanun", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kanun", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kanun/", + "description": "Kanun" + }, + { + "id": "th_skillhunt", + "name": "Skillhunt", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/skillhunt", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/skillhunt/", + "description": "Skillhunt" + }, + { + "id": "th_medi", + "name": "Medi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medi/", + "description": "Medi" + }, + { + "id": "th_buson", + "name": "Buson", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/buson", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/buson/", + "description": "Buson" + }, + { + "id": "th_listrace", + "name": "Listrace", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/listrace", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/listrace/", + "description": "Listrace" + }, + { + "id": "th_sublime", + "name": "Sublime", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sublime", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sublime/", + "description": "Sublime" + }, + { + "id": "th_banker", + "name": "Banker", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/banker", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/banker/", + "description": "Banker" + }, + { + "id": "th_loanday", + "name": "Loanday", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/loanday", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/loanday/", + "description": "Loanday" + }, + { + "id": "th_arbano", + "name": "Arbano", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/arbano", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/arbano/", + "description": "Arbano" + }, + { + "id": "th_citylisting", + "name": "Citylisting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/citylisting", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/citylisting/", + "description": "Citylisting" + }, + { + "id": "th_avo", + "name": "Avo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/avo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/avo/", + "description": "Avo" + }, + { + "id": "th_beyond", + "name": "Beyond", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/beyond", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/beyond/", + "description": "Beyond" + }, + { + "id": "th_andrea", + "name": "Andrea", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/andrea", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/andrea/", + "description": "Andrea" + }, + { + "id": "th_kindle", + "name": "Kindle", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kindle", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kindle/", + "description": "Kindle" + }, + { + "id": "th_simple", + "name": "Simple", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/simple", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/simple/", + "description": "Simple" + }, + { + "id": "th_snapshot", + "name": "Snapshot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/snapshot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/snapshot/", + "description": "Snapshot" + }, + { + "id": "th_energy1", + "name": "Energy1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/energy1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/energy1/", + "description": "Energy1" + }, + { + "id": "th_flatter", + "name": "Flatter", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/flatter", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/flatter/", + "description": "Flatter" + }, + { + "id": "th_dentist", + "name": "Dentist", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dentist", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dentist/", + "description": "Dentist" + }, + { + "id": "th_look", + "name": "Look", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/look", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/look/", + "description": "Look" + }, + { + "id": "th_bizcraft", + "name": "Bizcraft", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bizcraft", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bizcraft/", + "description": "Bizcraft" + }, + { + "id": "th_itsolution", + "name": "Itsolution", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/itsolution", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/itsolution/", + "description": "Itsolution" + }, + { + "id": "th_stamina", + "name": "Stamina", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stamina", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stamina/", + "description": "Stamina" + }, + { + "id": "th_loans2go", + "name": "Loans2Go", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/loans2go", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/loans2go/", + "description": "Loans2Go" + }, + { + "id": "th_invention", + "name": "Invention", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Invention", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Invention/", + "description": "Invention" + }, + { + "id": "th_marco", + "name": "Marco", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/marco", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/marco/", + "description": "Marco" + }, + { + "id": "th_uptown", + "name": "Uptown", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/uptown", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/uptown/", + "description": "Uptown" + }, + { + "id": "th_advanture_2", + "name": "Advanture 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/advanture-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/advanture-2/", + "description": "Advanture 2" + }, + { + "id": "th_major", + "name": "Major", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/major", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/major/", + "description": "Major" + }, + { + "id": "th_workout", + "name": "Workout", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/workout", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/workout/", + "description": "Workout" + }, + { + "id": "th_apart", + "name": "Apart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/apart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/apart/", + "description": "Apart" + }, + { + "id": "th_wemeet", + "name": "Wemeet", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wemeet", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wemeet/", + "description": "Wemeet" + }, + { + "id": "th_dreams", + "name": "Dreams", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dreams", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dreams/", + "description": "Dreams" + }, + { + "id": "th_learnit", + "name": "Learnit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/learnit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/learnit/", + "description": "Learnit" + }, + { + "id": "th_stylistic", + "name": "Stylistic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stylistic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stylistic/", + "description": "Stylistic" + }, + { + "id": "th_snipp", + "name": "Snipp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/snipp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/snipp/", + "description": "Snipp" + }, + { + "id": "th_hazze", + "name": "Hazze", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hazze", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hazze/", + "description": "Hazze" + }, + { + "id": "th_scaffold", + "name": "Scaffold", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/scaffold", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/scaffold/", + "description": "Scaffold" + }, + { + "id": "th_covid", + "name": "Covid", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/covid", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/covid/", + "description": "Covid" + }, + { + "id": "th_amazon_ebook", + "name": "Amazon Ebook", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Amazon-eBook", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Amazon-eBook/", + "description": "Responsive eBook Template" + }, + { + "id": "th_voyage", + "name": "Voyage", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/voyage", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/voyage/", + "description": "Voyage" + }, + { + "id": "th_sentra", + "name": "Sentra", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sentra", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sentra/", + "description": "Sentra" + }, + { + "id": "th_eden", + "name": "Eden", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eden", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eden/", + "description": "Eden" + }, + { + "id": "th_amin", + "name": "Amin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/amin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/amin/", + "description": "Amin" + }, + { + "id": "th_ecoland", + "name": "Ecoland", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ecoland", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ecoland/", + "description": "Ecoland" + }, + { + "id": "th_author", + "name": "Author", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/author", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/author/", + "description": "Author" + }, + { + "id": "th_constructo", + "name": "Constructo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/constructo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/constructo/", + "description": "Constructo" + }, + { + "id": "th_zogin", + "name": "Zogin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/zogin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/zogin/", + "description": "Zogin" + }, + { + "id": "th_ninom", + "name": "Ninom", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ninom", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ninom/", + "description": "Ninom" + }, + { + "id": "th_hiroto", + "name": "Hiroto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hiroto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hiroto/", + "description": "Hiroto- Free Template" + }, + { + "id": "th_chocolux", + "name": "Chocolux", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/chocolux", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/chocolux/", + "description": "Chocolux" + }, + { + "id": "th_alotan", + "name": "Alotan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/alotan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/alotan/", + "description": "Alotan" + }, + { + "id": "th_thevenue", + "name": "Thevenue", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/thevenue", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/thevenue/", + "description": "Thevenue" + }, + { + "id": "th_aievari", + "name": "Aievari", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aievari", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aievari/", + "description": "Aievari" + }, + { + "id": "th_scenic", + "name": "Scenic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/scenic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/scenic/", + "description": "Scenic" + }, + { + "id": "th_swipe", + "name": "Swipe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/swipe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/swipe/", + "description": "Swipe" + }, + { + "id": "th_callie", + "name": "Callie", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/callie", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/callie/", + "description": "Callie" + }, + { + "id": "th_humanity", + "name": "Humanity", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/humanity", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/humanity/", + "description": "Multi Page Non-Profit Template " + }, + { + "id": "th_eatery", + "name": "Eatery", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eatery", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eatery/", + "description": "Eatery" + }, + { + "id": "th_luxe", + "name": "Luxe", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/luxe", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/luxe/", + "description": "Luxe" + }, + { + "id": "th_anipat", + "name": "Anipat", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/anipat", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/anipat/", + "description": "Anipat" + }, + { + "id": "th_pexcon", + "name": "Pexcon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pexcon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pexcon/", + "description": "Pexcon" + }, + { + "id": "th_chiropractic", + "name": "Chiropractic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/chiropractic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/chiropractic/", + "description": "Chiropractic" + }, + { + "id": "th_book", + "name": "Book", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/book", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/book/", + "description": "Book" + }, + { + "id": "th_oxomi", + "name": "Oxomi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/oxomi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/oxomi/", + "description": "Oxomi" + }, + { + "id": "th_energen", + "name": "Energen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/energen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/energen/", + "description": "Energen" + }, + { + "id": "th_judge", + "name": "Judge", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/judge", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/judge/", + "description": "Judge" + }, + { + "id": "th_cyption", + "name": "Cyption", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cyption", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cyption/", + "description": "Cyption" + }, + { + "id": "th_fables", + "name": "Fables", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fables", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fables/", + "description": "Multipurpose Corporation free HTML5 Template" + }, + { + "id": "th_lingua", + "name": "Lingua", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lingua", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lingua/", + "description": "Lingua" + }, + { + "id": "th_kusina", + "name": "Kusina", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kusina", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kusina/", + "description": "Kusina" + }, + { + "id": "th_counselor", + "name": "Counselor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/counselor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/counselor/", + "description": "Counselor" + }, + { + "id": "th_grunt", + "name": "Grunt", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/grunt", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/grunt/", + "description": "Grunt" + }, + { + "id": "th_elderly", + "name": "Elderly", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elderly", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elderly/", + "description": "Elderly" + }, + { + "id": "th_quickloud", + "name": "Quickloud", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/quickloud", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/quickloud/", + "description": "Quickloud" + }, + { + "id": "th_landie", + "name": "Landie", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/landie", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/landie/", + "description": "Landie" + }, + { + "id": "th_treviso", + "name": "Treviso", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/treviso", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/treviso/", + "description": "Treviso" + }, + { + "id": "th_consult", + "name": "Consult", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/consult", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/consult/", + "description": "Consult" + }, + { + "id": "th_nitro", + "name": "Nitro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nitro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nitro/", + "description": "Nitro" + }, + { + "id": "th_journey", + "name": "Journey", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/journey", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/journey/", + "description": "Journey" + }, + { + "id": "th_typerite", + "name": "Typerite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/typerite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/typerite/", + "description": "Typerite" + }, + { + "id": "th_realtors", + "name": "Realtors", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/realtors", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/realtors/", + "description": "Realtors" + }, + { + "id": "th_cassi", + "name": "Cassi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cassi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cassi/", + "description": "Cassi" + }, + { + "id": "th_sierra", + "name": "Sierra", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sierra", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sierra/", + "description": "Sierra" + }, + { + "id": "th_fresh", + "name": "Fresh", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fresh", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fresh/", + "description": "Fresh" + }, + { + "id": "th_softland", + "name": "Softland", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/softland", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/softland/", + "description": "Softland" + }, + { + "id": "th_resta", + "name": "Resta", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/resta", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/resta/", + "description": "Resta" + }, + { + "id": "th_newbiz", + "name": "Newbiz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/newbiz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/newbiz/", + "description": "Newbiz" + }, + { + "id": "th_uza", + "name": "Uza", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/uza", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/uza/", + "description": "Uza" + }, + { + "id": "th_harbor", + "name": "Harbor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/harbor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/harbor/", + "description": "Harbor" + }, + { + "id": "th_linkweb", + "name": "Linkweb", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/linkweb", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/linkweb/", + "description": "Linkweb" + }, + { + "id": "th_south", + "name": "South", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/south", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/south/", + "description": "South" + }, + { + "id": "th_wow", + "name": "Wow", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wow", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wow/", + "description": "Wow" + }, + { + "id": "th_neos", + "name": "Neos", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/neos", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/neos/", + "description": "Neos" + }, + { + "id": "th_bueno", + "name": "Bueno", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bueno", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bueno/", + "description": "Bueno" + }, + { + "id": "th_pressure_washing", + "name": "Pressure Washing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pressure-washing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pressure-washing/", + "description": "Pressure Washing" + }, + { + "id": "th_mamba", + "name": "Mamba", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mamba", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mamba/", + "description": "Mamba" + }, + { + "id": "th_multipurpose", + "name": "Multipurpose", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/multipurpose", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/multipurpose/", + "description": "Multipurpose" + }, + { + "id": "th_rhino", + "name": "Rhino", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rhino", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rhino/", + "description": "Rhino" + }, + { + "id": "th_personify", + "name": "Personify", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/personify", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/personify/", + "description": "Personify" + }, + { + "id": "th_metronic_frontend", + "name": "Metronic Frontend", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Metronic-Frontend", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Metronic-Frontend/", + "description": "Metronic Frontend" + }, + { + "id": "th_sight", + "name": "Sight", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/SIGHT", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/SIGHT/", + "description": "Free Responsive Web Template" + }, + { + "id": "th_skwela", + "name": "Skwela", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/skwela", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/skwela/", + "description": "Skwela" + }, + { + "id": "th_acupuncture", + "name": "Acupuncture", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/acupuncture", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/acupuncture/", + "description": "Acupuncture" + }, + { + "id": "th_azenta", + "name": "Azenta", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/azenta", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/azenta/", + "description": "Azenta" + }, + { + "id": "th_onlineedu", + "name": "Onlineedu", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/onlineedu", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/onlineedu/", + "description": "Onlineedu" + }, + { + "id": "th_surogou", + "name": "Surogou", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/surogou", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/surogou/", + "description": "Surogou" + }, + { + "id": "th_menztailor", + "name": "Menztailor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/menztailor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/menztailor/", + "description": "Menztailor" + }, + { + "id": "th_factory", + "name": "Factory", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Factory", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Factory/", + "description": "Factory" + }, + { + "id": "th_imperial", + "name": "Imperial", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/imperial", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/imperial/", + "description": "Imperial" + }, + { + "id": "th_pure1", + "name": "Pure1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pure1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pure1/", + "description": "Pure1" + }, + { + "id": "th_industire", + "name": "Industire", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/industire", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/industire/", + "description": "Industire" + }, + { + "id": "th_resto", + "name": "Resto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/resto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/resto/", + "description": "Resto" + }, + { + "id": "th_woodrox", + "name": "Woodrox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/woodrox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/woodrox/", + "description": "Woodrox" + }, + { + "id": "th_blanca", + "name": "Blanca", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/blanca", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/blanca/", + "description": "Blanca" + }, + { + "id": "th_archlab", + "name": "Archlab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/archlab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/archlab/", + "description": "Archlab" + }, + { + "id": "th_consulotion", + "name": "Consulotion", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/consulotion", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/consulotion/", + "description": "Consulotion" + }, + { + "id": "th_braxit", + "name": "Braxit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/braxit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/braxit/", + "description": "Braxit" + }, + { + "id": "th_comport", + "name": "Comport", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/comport", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/comport/", + "description": "Comport" + }, + { + "id": "th_instylr", + "name": "Instylr", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/instylr", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/instylr/", + "description": "Instylr" + }, + { + "id": "th_virtualassistant", + "name": "Virtualassistant", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/virtualassistant", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/virtualassistant/", + "description": "Virtualassistant" + }, + { + "id": "th_stisla", + "name": "Stisla", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stisla", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stisla/", + "description": "HTML5 and CSS3 Template Based on Bootstrap 4" + }, + { + "id": "th_coaching", + "name": "Coaching", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/coaching", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/coaching/", + "description": "Coaching" + }, + { + "id": "th_eatwell", + "name": "Eatwell", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eatwell", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eatwell/", + "description": "Eatwell" + }, + { + "id": "th_more", + "name": "More", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/more", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/more/", + "description": "More" + }, + { + "id": "th_hepta", + "name": "Hepta", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hepta", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hepta/", + "description": "Hepta" + }, + { + "id": "th_nest", + "name": "Nest", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nest", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nest/", + "description": "Nest" + }, + { + "id": "th_rabbit", + "name": "Rabbit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rabbit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rabbit/", + "description": "A responsive HTML 5 Template" + }, + { + "id": "th_regna", + "name": "Regna", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/regna", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/regna/", + "description": "Regna" + }, + { + "id": "th_busicol", + "name": "Busicol", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/busicol", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/busicol/", + "description": "Busicol" + }, + { + "id": "th_book_keeping", + "name": "Book Keeping", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/book-keeping", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/book-keeping/", + "description": "Book Keeping" + }, + { + "id": "th_rapid", + "name": "Rapid", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rapid", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rapid/", + "description": "Rapid" + }, + { + "id": "th_br", + "name": "Br", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/br", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/br/", + "description": "Br" + }, + { + "id": "th_redplanet", + "name": "Redplanet", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/redplanet", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/redplanet/", + "description": "Redplanet" + }, + { + "id": "th_teaser", + "name": "Teaser", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/teaser", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/teaser/", + "description": "Teaser" + }, + { + "id": "th_archs", + "name": "Archs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/archs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/archs/", + "description": "Archs" + }, + { + "id": "th_snow", + "name": "Snow", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/snow", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/snow/", + "description": "Snow" + }, + { + "id": "th_steve", + "name": "Steve", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/steve", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/steve/", + "description": "Steve" + }, + { + "id": "th_paradigm_shift", + "name": "Paradigm Shift", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/paradigm-shift", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/paradigm-shift/", + "description": "Paradigm Shift" + }, + { + "id": "th_basco", + "name": "Basco", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/basco", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/basco/", + "description": "Basco" + }, + { + "id": "th_favison", + "name": "Favison", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/favison", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/favison/", + "description": "Favison" + }, + { + "id": "th_brainwave", + "name": "Brainwave", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/brainwave", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/brainwave/", + "description": "Brainwave" + }, + { + "id": "th_namari", + "name": "Namari", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/namari", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/namari/", + "description": "Namari" + }, + { + "id": "th_occupy", + "name": "Occupy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/occupy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/occupy/", + "description": "Occupy" + }, + { + "id": "th_consulto", + "name": "Consulto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/consulto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/consulto/", + "description": "Consulto" + }, + { + "id": "th_initio", + "name": "Initio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Initio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Initio/", + "description": "Initio" + }, + { + "id": "th_ararat", + "name": "Ararat", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ararat", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ararat/", + "description": "Ararat" + }, + { + "id": "th_quest", + "name": "Quest", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/quest", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/quest/", + "description": "Quest" + }, + { + "id": "th_fitnezz", + "name": "Fitnezz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fitnezz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fitnezz/", + "description": "Fitnezz" + }, + { + "id": "th_pivot", + "name": "Pivot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pivot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pivot/", + "description": "Pivot" + }, + { + "id": "th_spectral", + "name": "Spectral", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/spectral", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/spectral/", + "description": "Spectral" + }, + { + "id": "th_digilab", + "name": "Digilab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/digilab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/digilab/", + "description": "Digilab" + }, + { + "id": "th_bee", + "name": "Bee", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bee", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bee/", + "description": "Bee" + }, + { + "id": "th_juli", + "name": "Juli", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/juli", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/juli/", + "description": "Juli" + }, + { + "id": "th_hus", + "name": "Hus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hus/", + "description": "Hus" + }, + { + "id": "th_luxury", + "name": "Luxury", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Luxury", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Luxury/", + "description": "Luxury - An Elegant Responsive One Page Bootstrap Template " + }, + { + "id": "th_webiz", + "name": "Webiz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/webiz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/webiz/", + "description": "Webiz" + }, + { + "id": "th_city_real_estate", + "name": "City Real Estate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/city-real-estate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/city-real-estate/", + "description": "City Real Estate" + }, + { + "id": "th_dream_pulse", + "name": "Dream Pulse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dream-pulse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dream-pulse/", + "description": "Dream Pulse" + }, + { + "id": "th_create", + "name": "Create", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/create", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/create/", + "description": "Create" + }, + { + "id": "th_yaseen", + "name": "Yaseen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yaseen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yaseen/", + "description": "Yaseen" + }, + { + "id": "th_confer", + "name": "Confer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/confer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/confer/", + "description": "Confer" + }, + { + "id": "th_kd", + "name": "Kd", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kd", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kd/", + "description": "Kd" + }, + { + "id": "th_doni", + "name": "Doni", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/doni", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/doni/", + "description": "Doni" + }, + { + "id": "th_mical", + "name": "Mical", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mical", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mical/", + "description": "Mical" + }, + { + "id": "th_credo", + "name": "Credo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/credo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/credo/", + "description": "Credo" + }, + { + "id": "th_burnout", + "name": "Burnout", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/burnout", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/burnout/", + "description": "Burnout" + }, + { + "id": "th_neat", + "name": "Neat", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/neat", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/neat/", + "description": "Neat" + }, + { + "id": "th_razor", + "name": "Razor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/razor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/razor/", + "description": "Razor" + }, + { + "id": "th_bloscot", + "name": "Bloscot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bloscot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bloscot/", + "description": "Bloscot" + }, + { + "id": "th_brighton", + "name": "Brighton", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/brighton", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/brighton/", + "description": "Brighton" + }, + { + "id": "th_medisen", + "name": "Medisen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/medisen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/medisen/", + "description": "Medisen" + }, + { + "id": "th_lattes", + "name": "Lattes", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lattes", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lattes/", + "description": "Lattes" + }, + { + "id": "th_stuff", + "name": "Stuff", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/stuff", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/stuff/", + "description": "Stuff" + }, + { + "id": "th_diffuso", + "name": "Diffuso", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/diffuso", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/diffuso/", + "description": "Diffuso" + }, + { + "id": "th_solution", + "name": "Solution", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/solution", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/solution/", + "description": "Solution" + }, + { + "id": "th_industrial", + "name": "Industrial", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/industrial", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/industrial/", + "description": "Industrial" + }, + { + "id": "th_lifeleck", + "name": "Lifeleck", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lifeleck", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lifeleck/", + "description": "Lifeleck" + }, + { + "id": "th_proshoot", + "name": "Proshoot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/proshoot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/proshoot/", + "description": "Proshoot" + }, + { + "id": "th_fastes", + "name": "Fastes", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fastes", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fastes/", + "description": "Fastes" + }, + { + "id": "th_foste", + "name": "Foste", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foste", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foste/", + "description": "Foste" + }, + { + "id": "th_imagine", + "name": "Imagine", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/imagine", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/imagine/", + "description": "Imagine" + }, + { + "id": "th_mini_profile", + "name": "Mini Profile", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mini-profile", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mini-profile/", + "description": "Mini Profile" + }, + { + "id": "th_bell", + "name": "Bell", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bell", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bell/", + "description": "Bell" + }, + { + "id": "th_convid", + "name": "Convid", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/convid", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/convid/", + "description": "Convid" + }, + { + "id": "th_gazette", + "name": "Gazette", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gazette", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gazette/", + "description": "Gazette" + }, + { + "id": "th_real_estate", + "name": "Real Estate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/real-estate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/real-estate/", + "description": "Real Estate" + }, + { + "id": "th_pilates", + "name": "Pilates", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Pilates", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Pilates/", + "description": "Life Coach - A Responsive, One Page Coaching Website Template for Consultant, Coaches and Instructors " + }, + { + "id": "th_halen", + "name": "Halen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/halen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/halen/", + "description": "Halen" + }, + { + "id": "th_nexus", + "name": "Nexus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nexus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nexus/", + "description": "Nexus" + }, + { + "id": "th_fantasy", + "name": "Fantasy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fantasy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fantasy/", + "description": "Fantasy" + }, + { + "id": "th_funder", + "name": "Funder", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/funder", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/funder/", + "description": "Funder" + }, + { + "id": "th_heaven", + "name": "Heaven", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/heaven", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/heaven/", + "description": "Heaven" + }, + { + "id": "th_bluesky", + "name": "Bluesky", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bluesky", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bluesky/", + "description": "Bluesky" + }, + { + "id": "th_me", + "name": "Me", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/me", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/me/", + "description": "Me" + }, + { + "id": "th_mighty", + "name": "Mighty", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mighty", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mighty/", + "description": "Mighty" + }, + { + "id": "th_crossfit_2", + "name": "Crossfit 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/crossfit-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/crossfit-2/", + "description": "Crossfit 2" + }, + { + "id": "th_bbs", + "name": "Bbs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bbs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bbs/", + "description": "Bbs" + }, + { + "id": "th_hostza", + "name": "Hostza", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hostza", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hostza/", + "description": "Hostza" + }, + { + "id": "th_safario", + "name": "Safario", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/safario", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/safario/", + "description": "Safario" + }, + { + "id": "th_maxibiz", + "name": "Maxibiz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/maxibiz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/maxibiz/", + "description": "Maxibiz" + }, + { + "id": "th_minimis", + "name": "Minimis", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/minimis", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/minimis/", + "description": "Minimis" + }, + { + "id": "th_dolphin", + "name": "Dolphin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dolphin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dolphin/", + "description": "Dolphin" + }, + { + "id": "th_karmo", + "name": "Karmo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/karmo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/karmo/", + "description": "Karmo" + }, + { + "id": "th_softy_pinko", + "name": "Softy Pinko", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/softy-pinko", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/softy-pinko/", + "description": "Softy Pinko" + }, + { + "id": "th_notary", + "name": "Notary", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/notary", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/notary/", + "description": "Notary" + }, + { + "id": "th_foto", + "name": "Foto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/foto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/foto/", + "description": "Foto" + }, + { + "id": "th_cellon", + "name": "Cellon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cellon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cellon/", + "description": "Cellon" + }, + { + "id": "th_crafted", + "name": "Crafted", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/crafted", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/crafted/", + "description": "Crafted" + }, + { + "id": "th_diggo", + "name": "Diggo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/diggo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/diggo/", + "description": "Diggo" + }, + { + "id": "th_nickie", + "name": "Nickie", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nickie", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nickie/", + "description": "Nickie" + }, + { + "id": "th_jumper", + "name": "Jumper", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jumper", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jumper/", + "description": "Jumper" + }, + { + "id": "th_glint2", + "name": "Glint2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/glint2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/glint2/", + "description": "Glint2" + }, + { + "id": "th_wordify", + "name": "Wordify", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wordify", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wordify/", + "description": "Wordify" + }, + { + "id": "th_blk_design_system", + "name": "Blk Design System", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/blk-design-system", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/blk-design-system/", + "description": "Blk Design System" + }, + { + "id": "th_like", + "name": "Like", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/like", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/like/", + "description": "Like" + }, + { + "id": "th_ionize", + "name": "Ionize", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ionize", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ionize/", + "description": "Ionize" + }, + { + "id": "th_meditative", + "name": "Meditative", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/meditative", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/meditative/", + "description": "Meditative" + }, + { + "id": "th_archi", + "name": "Archi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/archi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/archi/", + "description": "Archi" + }, + { + "id": "th_remake", + "name": "Remake", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/remake", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/remake/", + "description": "Remake" + }, + { + "id": "th_revive", + "name": "Revive", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/revive", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/revive/", + "description": "Revive" + }, + { + "id": "th_dreams_2", + "name": "Dreams 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dreams-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dreams-2/", + "description": "Dreams 2" + }, + { + "id": "th_new_age", + "name": "New Age", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/new-age", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/new-age/", + "description": "New Age" + }, + { + "id": "th_dazzle", + "name": "Dazzle", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dazzle", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dazzle/", + "description": "Dazzle" + }, + { + "id": "th_insertion", + "name": "Insertion", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/insertion", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/insertion/", + "description": "Insertion" + }, + { + "id": "th_hola", + "name": "Hola", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hola", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hola/", + "description": "Hola" + }, + { + "id": "th_clickaholic", + "name": "Clickaholic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/clickaholic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/clickaholic/", + "description": "Clickaholic" + }, + { + "id": "th_itsy", + "name": "Itsy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/itsy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/itsy/", + "description": "Itsy" + }, + { + "id": "th_pro_line", + "name": "Pro Line", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pro-line", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pro-line/", + "description": "Pro Line" + }, + { + "id": "th_elegance", + "name": "Elegance", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elegance", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elegance/", + "description": "Elegance" + }, + { + "id": "th_marga", + "name": "Marga", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/marga", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/marga/", + "description": "Marga" + }, + { + "id": "th_handyman", + "name": "Handyman", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/handyman", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/handyman/", + "description": "Handyman" + }, + { + "id": "th_precon", + "name": "Precon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/precon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/precon/", + "description": "Precon" + }, + { + "id": "th_intot", + "name": "Intot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/intot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/intot/", + "description": "Intot" + }, + { + "id": "th_racks", + "name": "Racks", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/racks", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/racks/", + "description": "Racks" + }, + { + "id": "th_buildex", + "name": "Buildex", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/buildex", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/buildex/", + "description": "Buildex" + }, + { + "id": "th_monday", + "name": "Monday", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/monday", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/monday/", + "description": "Monday" + }, + { + "id": "th_expert", + "name": "Expert", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/expert", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/expert/", + "description": "Expert" + }, + { + "id": "th_jimmy", + "name": "Jimmy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jimmy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jimmy/", + "description": "Jimmy" + }, + { + "id": "th_jd_1", + "name": "Jd 1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jd-1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jd-1/", + "description": "Jd 1" + }, + { + "id": "th_cocoon", + "name": "Cocoon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cocoon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cocoon/", + "description": "Cocoon" + }, + { + "id": "th_bato", + "name": "Bato", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bato", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bato/", + "description": "Bato" + }, + { + "id": "th_oak", + "name": "Oak", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/oak", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/oak/", + "description": "Oak" + }, + { + "id": "th_meal", + "name": "Meal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/meal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/meal/", + "description": "Meal" + }, + { + "id": "th_pixel", + "name": "Pixel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pixel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pixel/", + "description": "Pixel" + }, + { + "id": "th_feast", + "name": "Feast", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/feast", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/feast/", + "description": "Feast" + }, + { + "id": "th_kreative", + "name": "Kreative", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/kreative", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/kreative/", + "description": "Kreative" + }, + { + "id": "th_standout", + "name": "Standout", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/standout", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/standout/", + "description": "Standout" + }, + { + "id": "th_art_factory", + "name": "Art Factory", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/art-factory", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/art-factory/", + "description": "Art Factory" + }, + { + "id": "th_dizzi", + "name": "Dizzi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dizzi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dizzi/", + "description": "Dizzi" + }, + { + "id": "th_oneder", + "name": "Oneder", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/oneder", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/oneder/", + "description": "Oneder" + }, + { + "id": "th_meghna", + "name": "Meghna", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/meghna", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/meghna/", + "description": "Meghna" + }, + { + "id": "th_lorahost", + "name": "Lorahost", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lorahost", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lorahost/", + "description": "Lorahost" + }, + { + "id": "th_vanilla", + "name": "Vanilla", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vanilla", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vanilla/", + "description": "Vanilla" + }, + { + "id": "th_plataforma", + "name": "Plataforma", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/plataforma", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/plataforma/", + "description": "Plataforma" + }, + { + "id": "th_podcast", + "name": "Podcast", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/podcast", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/podcast/", + "description": "Podcast" + }, + { + "id": "th_argon", + "name": "Argon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/argon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/argon/", + "description": "Argon" + }, + { + "id": "th_consula", + "name": "Consula", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/consula", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/consula/", + "description": "Consula" + }, + { + "id": "th_magnum", + "name": "Magnum", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/magnum", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/magnum/", + "description": "Magnum" + }, + { + "id": "th_amplify", + "name": "Amplify", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/amplify", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/amplify/", + "description": "Amplify" + }, + { + "id": "th_ostacor", + "name": "Ostacor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Ostacor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Ostacor/", + "description": "Ostacor" + }, + { + "id": "th_shahala", + "name": "Shahala", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/shahala", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/shahala/", + "description": "Shahala" + }, + { + "id": "th_cruise", + "name": "Cruise", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cruise", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cruise/", + "description": "Cruise" + }, + { + "id": "th_lazy_kit", + "name": "Lazy Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lazy-kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lazy-kit/", + "description": "Lazy Kit" + }, + { + "id": "th_unearth", + "name": "Unearth", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/unearth", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/unearth/", + "description": "Unearth" + }, + { + "id": "th_pro", + "name": "Pro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pro/", + "description": "Pro" + }, + { + "id": "th_comply", + "name": "Comply", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/comply", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/comply/", + "description": "Comply" + }, + { + "id": "th_bigwing", + "name": "Bigwing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bigwing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bigwing/", + "description": "Bigwing" + }, + { + "id": "th_metal", + "name": "Metal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/metal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/metal/", + "description": "Metal" + }, + { + "id": "th_moon", + "name": "Moon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/moon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/moon/", + "description": "Moon" + }, + { + "id": "th_mosh", + "name": "Mosh", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mosh", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mosh/", + "description": "Mosh" + }, + { + "id": "th_solid_state", + "name": "Solid State", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Solid-State", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Solid-State/", + "description": "Solid State" + }, + { + "id": "th_interact", + "name": "Interact", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/interact", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/interact/", + "description": "Interact" + }, + { + "id": "th_ghughu", + "name": "Ghughu", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ghughu", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ghughu/", + "description": "Ghughu" + }, + { + "id": "th_adalot", + "name": "Adalot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/adalot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/adalot/", + "description": "Adalot" + }, + { + "id": "th_green_special", + "name": "Green Special", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/green-special", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/green-special/", + "description": "Green Special" + }, + { + "id": "th_buri", + "name": "Buri", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/buri", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/buri/", + "description": "Buri" + }, + { + "id": "th_rapoo", + "name": "Rapoo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rapoo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rapoo/", + "description": "Rapoo" + }, + { + "id": "th_neutral", + "name": "Neutral", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/neutral", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/neutral/", + "description": "Neutral" + }, + { + "id": "th_lander", + "name": "Lander", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lander", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lander/", + "description": "Lander" + }, + { + "id": "th_read_only", + "name": "Read Only", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/read-only", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/read-only/", + "description": "Read Only" + }, + { + "id": "th_trave", + "name": "Trave", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trave", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trave/", + "description": "Trave" + }, + { + "id": "th_magazee", + "name": "Magazee", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/magazee", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/magazee/", + "description": "Magazee" + }, + { + "id": "th_ubutia", + "name": "Ubutia", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ubutia", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ubutia/", + "description": "free bootstrap template" + }, + { + "id": "th_nissa", + "name": "Nissa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nissa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nissa/", + "description": "Nissa" + }, + { + "id": "th_parallo", + "name": "Parallo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/parallo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/parallo/", + "description": "Parallo" + }, + { + "id": "th_armando", + "name": "Armando", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/armando", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/armando/", + "description": "Armando" + }, + { + "id": "th_next", + "name": "Next", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/next", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/next/", + "description": "Next" + }, + { + "id": "th_erase", + "name": "Erase", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/erase", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/erase/", + "description": "Erase" + }, + { + "id": "th_pixel_lite", + "name": "Pixel Lite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pixel-lite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pixel-lite/", + "description": "Pixel Lite" + }, + { + "id": "th_ethan", + "name": "Ethan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ethan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ethan/", + "description": "Ethan" + }, + { + "id": "th_judicial", + "name": "Judicial", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/judicial", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/judicial/", + "description": "Judicial" + }, + { + "id": "th_slides", + "name": "Slides", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/slides", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/slides/", + "description": "Slides" + }, + { + "id": "th_equip", + "name": "Equip", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/equip", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/equip/", + "description": "Equip" + }, + { + "id": "th_noxen", + "name": "Noxen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/noxen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/noxen/", + "description": "Noxen" + }, + { + "id": "th_vira", + "name": "Vira", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vira", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vira/", + "description": "Vira" + }, + { + "id": "th_dot", + "name": "Dot", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dot", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dot/", + "description": "Dot" + }, + { + "id": "th_trekking", + "name": "Trekking", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trekking", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trekking/", + "description": "Trekking" + }, + { + "id": "th_bizzy", + "name": "Bizzy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bizzy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bizzy/", + "description": "Bizzy" + }, + { + "id": "th_ideal", + "name": "Ideal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ideal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ideal/", + "description": "Ideal" + }, + { + "id": "th_opium", + "name": "Opium", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/opium", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/opium/", + "description": "Opium" + }, + { + "id": "th_character", + "name": "Character", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/character", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/character/", + "description": "Character" + }, + { + "id": "th_wrapk", + "name": "Wrapk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wrapk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wrapk/", + "description": "Wrapk" + }, + { + "id": "th_landerz", + "name": "Landerz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/landerz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/landerz/", + "description": "Landerz" + }, + { + "id": "th_twenty", + "name": "Twenty", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/twenty", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/twenty/", + "description": "Twenty" + }, + { + "id": "th_browser", + "name": "Browser", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/browser", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/browser/", + "description": "Browser" + }, + { + "id": "th_paper_kit", + "name": "Paper Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/paper-kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/paper-kit/", + "description": "Paper Kit is a Fully Coded Web UI Kit based on Bootstrap 3" + }, + { + "id": "th_dup", + "name": "Dup", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dup", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dup/", + "description": "Dup" + }, + { + "id": "th_outdoors", + "name": "Outdoors", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Outdoors", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Outdoors/", + "description": "An implementation of Gil Huybrecht “Outdoors” design project powered by layered CSS grids." + }, + { + "id": "th_material_kit", + "name": "Material Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-kit/", + "description": "Material Kit" + }, + { + "id": "th_ignite", + "name": "Ignite", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ignite", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ignite/", + "description": "Ignite" + }, + { + "id": "th_avana", + "name": "Avana", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/avana", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/avana/", + "description": "Avana" + }, + { + "id": "th_jeren", + "name": "Jeren", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jeren", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jeren/", + "description": "Jeren" + }, + { + "id": "th_element", + "name": "Element", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/element", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/element/", + "description": "Element" + }, + { + "id": "th_maze", + "name": "Maze", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/maze", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/maze/", + "description": "Maze" + }, + { + "id": "th_alstar", + "name": "Alstar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/alstar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/alstar/", + "description": "Alstar is a free parallax Bootstrap one page template with enormous features." + }, + { + "id": "th_elisa_template_demo", + "name": "Elisa Template Demo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elisa-template-demo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elisa-template-demo/", + "description": "Demo for Elisa Bootstrap Template" + }, + { + "id": "th_wired_ui_kit", + "name": "Wired Ui Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wired_ui_kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wired_ui_kit/", + "description": "Wired Ui Kit" + }, + { + "id": "th_mind_craft", + "name": "Mind Craft", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Mind-Craft", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Mind-Craft/", + "description": "Mind Craft" + }, + { + "id": "th_clemo", + "name": "Clemo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/clemo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/clemo/", + "description": "Clemo" + }, + { + "id": "th_aavas", + "name": "Aavas", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aavas", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aavas/", + "description": "Aavas" + }, + { + "id": "th_fun_weather", + "name": "Fun Weather", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fun-weather", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fun-weather/", + "description": "Fun Weather" + }, + { + "id": "th_goind", + "name": "Goind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/goind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/goind/", + "description": "Goind" + }, + { + "id": "th_platina", + "name": "Platina", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/platina", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/platina/", + "description": "Platina" + }, + { + "id": "th_sided", + "name": "Sided", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sided", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sided/", + "description": "Sided" + }, + { + "id": "th_fplus", + "name": "Fplus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fplus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fplus/", + "description": "Fplus" + }, + { + "id": "th_copa", + "name": "Copa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/copa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/copa/", + "description": "Copa" + }, + { + "id": "th_thetown", + "name": "Thetown", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/thetown", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/thetown/", + "description": "Thetown" + }, + { + "id": "th_ubeasa", + "name": "Ubeasa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ubeasa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ubeasa/", + "description": "free html5 template" + }, + { + "id": "th_dinomuz", + "name": "Dinomuz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dinomuz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dinomuz/", + "description": "Dinomuz" + }, + { + "id": "th_charcoal", + "name": "Charcoal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/charcoal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/charcoal/", + "description": "Charcoal" + }, + { + "id": "th_marco_2", + "name": "Marco 2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/marco-2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/marco-2/", + "description": "Marco 2" + }, + { + "id": "th_regen_ui_kit", + "name": "Regen Ui Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/regen-ui-kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/regen-ui-kit/", + "description": "Regen Ui Kit" + }, + { + "id": "th_katt", + "name": "Katt", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/katt", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/katt/", + "description": "Katt" + }, + { + "id": "th_hexa", + "name": "Hexa", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hexa", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hexa/", + "description": "Hexa" + }, + { + "id": "th_diner", + "name": "Diner", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/diner", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/diner/", + "description": "Diner" + }, + { + "id": "th_five_star", + "name": "Five Star", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/five-star", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/five-star/", + "description": "Five Star" + }, + { + "id": "th_arcwork", + "name": "Arcwork", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/arcwork", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/arcwork/", + "description": "Arcwork" + }, + { + "id": "th_innova", + "name": "Innova", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/innova", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/innova/", + "description": "Innova" + }, + { + "id": "th_next_level", + "name": "Next Level", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/next-level", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/next-level/", + "description": "Next Level" + }, + { + "id": "th_lambda", + "name": "Lambda", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lambda", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lambda/", + "description": "Lambda" + }, + { + "id": "th_loaft", + "name": "Loaft", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/loaft", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/loaft/", + "description": "Loaft" + }, + { + "id": "th_ronald", + "name": "Ronald", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ronald", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ronald/", + "description": "Ronald" + }, + { + "id": "th_tangre", + "name": "Tangre", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tangre", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tangre/", + "description": "Tangre" + }, + { + "id": "th_jaine", + "name": "Jaine", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jaine", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jaine/", + "description": "Jaine" + }, + { + "id": "th_elements", + "name": "Elements", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elements", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elements/", + "description": "Elements" + }, + { + "id": "th_jd", + "name": "Jd", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/jd", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/jd/", + "description": "Jd" + }, + { + "id": "th_promodise", + "name": "Promodise", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/promodise", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/promodise/", + "description": "Promodise" + }, + { + "id": "th_ramayana", + "name": "Ramayana", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ramayana", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ramayana/", + "description": "Ramayana" + }, + { + "id": "th_flamix", + "name": "Flamix", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/flamix", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/flamix/", + "description": "Flamix" + }, + { + "id": "th_hikers", + "name": "Hikers", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hikers", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hikers/", + "description": "Hikers" + }, + { + "id": "th_holmes", + "name": "Holmes", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/holmes", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/holmes/", + "description": "Holmes" + }, + { + "id": "th_fancy", + "name": "Fancy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fancy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fancy/", + "description": "Fancy" + }, + { + "id": "th_bravo", + "name": "Bravo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bravo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bravo/", + "description": "Bravo" + }, + { + "id": "th_synthetica", + "name": "Synthetica", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/synthetica", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/synthetica/", + "description": "Synthetica" + }, + { + "id": "th_trendy", + "name": "Trendy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trendy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trendy/", + "description": "Trendy" + }, + { + "id": "th_accent", + "name": "Accent", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/accent", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/accent/", + "description": "Accent" + }, + { + "id": "th_ultim8", + "name": "Ultim8", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ultim8", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ultim8/", + "description": "Ultim8" + }, + { + "id": "th_sun", + "name": "Sun", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sun", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sun/", + "description": "Sun" + }, + { + "id": "th_patros", + "name": "Patros", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/patros", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/patros/", + "description": "Patros" + }, + { + "id": "th_story", + "name": "Story", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/story", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/story/", + "description": "Story" + }, + { + "id": "th_vlava", + "name": "Vlava", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vlava", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vlava/", + "description": "Vlava" + }, + { + "id": "th_mortize", + "name": "Mortize", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mortize", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mortize/", + "description": "Mortize" + }, + { + "id": "th_iconic", + "name": "Iconic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/iconic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/iconic/", + "description": "Iconic" + }, + { + "id": "th_evie1", + "name": "Evie1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/evie1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/evie1/", + "description": "Evie1" + }, + { + "id": "th_negotiate", + "name": "Negotiate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/negotiate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/negotiate/", + "description": "Negotiate" + }, + { + "id": "th_casinal", + "name": "Casinal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Casinal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Casinal/", + "description": "Free website template" + }, + { + "id": "th_capiclean", + "name": "Capiclean", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Capiclean", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Capiclean/", + "description": "Free responsive website template" + }, + { + "id": "th_meyawo", + "name": "Meyawo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/meyawo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/meyawo/", + "description": "Free CSS Template" + }, + { + "id": "th_klar", + "name": "Klar", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/klar", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/klar/", + "description": "Free Responsive HTML Template" + }, + { + "id": "th_revolve", + "name": "Revolve", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/revolve", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/revolve/", + "description": "Free Bootstrap Template" + }, + { + "id": "th_clickr", + "name": "Clickr", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/clickr", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/clickr/", + "description": "Clickr" + }, + { + "id": "th_ioniq", + "name": "Ioniq", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ioniq", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ioniq/", + "description": "Ioniq" + }, + { + "id": "th_risotto", + "name": "Risotto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/risotto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/risotto/", + "description": "Risotto" + }, + { + "id": "th_ca", + "name": "Ca", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/CA", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/CA/", + "description": "Ca" + }, + { + "id": "th_roundy", + "name": "Roundy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/roundy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/roundy/", + "description": "Roundy" + }, + { + "id": "th_landwind", + "name": "Landwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/landwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/landwind/", + "description": "Landwind" + }, + { + "id": "th_farmfresh", + "name": "Farmfresh", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/farmfresh", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/farmfresh/", + "description": "Farmfresh" + }, + { + "id": "th_kindheart", + "name": "Kindheart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/KindHeart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/KindHeart/", + "description": "Kindheart" + }, + { + "id": "th_archiark", + "name": "Archiark", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/archiark", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/archiark/", + "description": "Archiark" + }, + { + "id": "th_podtalk", + "name": "Podtalk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/PodTalk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/PodTalk/", + "description": "Podtalk" + }, + { + "id": "th_festavalive", + "name": "Festavalive", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/FestavaLive", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/FestavaLive/", + "description": "Festavalive" + }, + { + "id": "th_multiverse", + "name": "Multiverse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/multiverse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/multiverse/", + "description": "Multiverse" + }, + { + "id": "th_feane", + "name": "Feane", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/feane", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/feane/", + "description": "Feane" + }, + { + "id": "th_growmark", + "name": "Growmark", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/GrowMark", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/GrowMark/", + "description": "Growmark" + }, + { + "id": "th_cycle", + "name": "Cycle", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Cycle", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Cycle/", + "description": "Cycle" + }, + { + "id": "th_teab", + "name": "Teab", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/teab", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/teab/", + "description": "Teab" + }, + { + "id": "th_swipol", + "name": "Swipol", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/SwiPol", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/SwiPol/", + "description": "Swipol" + }, + { + "id": "th_nico", + "name": "Nico", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nico", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nico/", + "description": "Nico" + }, + { + "id": "th_nimo", + "name": "Nimo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Nimo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Nimo/", + "description": "Nimo" + }, + { + "id": "th_tnio", + "name": "Tnio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tnio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tnio/", + "description": "Tnio" + }, + { + "id": "th_birdor", + "name": "Birdor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Birdor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Birdor/", + "description": "Birdor" + }, + { + "id": "th_transit", + "name": "Transit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/transit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/transit/", + "description": "Transit" + }, + { + "id": "th_painto", + "name": "Painto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Painto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Painto/", + "description": "Painto" + }, + { + "id": "th_moto", + "name": "Moto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Moto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Moto/", + "description": "Moto" + }, + { + "id": "th_rea", + "name": "Rea", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/rea", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/rea/", + "description": "Rea" + }, + { + "id": "th_crptiam", + "name": "Crptiam", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Crptiam", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Crptiam/", + "description": "Crptiam" + }, + { + "id": "th_growing", + "name": "Growing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/growing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/growing/", + "description": "Growing" + }, + { + "id": "th_gariox", + "name": "Gariox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gariox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gariox/", + "description": "Gariox" + }, + { + "id": "th_talenttalk", + "name": "Talenttalk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/TalentTalk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/TalentTalk/", + "description": "Talenttalk" + }, + { + "id": "th_dashui", + "name": "Dashui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/DashUI", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/DashUI/", + "description": "Dashui" + }, + { + "id": "th_maxwell", + "name": "Maxwell", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/maxwell", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/maxwell/", + "description": "Maxwell" + }, + { + "id": "th_trator", + "name": "Trator", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/trator", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/trator/", + "description": "Trator" + }, + { + "id": "th_snapx", + "name": "Snapx", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/snapx", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/snapx/", + "description": "Snapx" + }, + { + "id": "th_mexant", + "name": "Mexant", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mexant", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mexant/", + "description": "Mexant" + }, + { + "id": "th_pinwheel", + "name": "Pinwheel", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pinwheel", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pinwheel/", + "description": "Pinwheel" + }, + { + "id": "th_topiclisting", + "name": "Topiclisting", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/TopicListing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/TopicListing/", + "description": "Topiclisting" + }, + { + "id": "th_ultras", + "name": "Ultras", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/ultras", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/ultras/", + "description": "Ultras" + }, + { + "id": "th_rent4u", + "name": "Rent4U", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Rent4u", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Rent4u/", + "description": "Rent4U" + }, + { + "id": "th_furnics", + "name": "Furnics", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/furnics", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/furnics/", + "description": "Furnics" + }, + { + "id": "th_swanky", + "name": "Swanky", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/swanky", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/swanky/", + "description": "Swanky" + }, + { + "id": "th_financing", + "name": "Financing", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/financing", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/financing/", + "description": "Financing" + }, + { + "id": "th_strategy", + "name": "Strategy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/strategy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/strategy/", + "description": "Strategy" + }, + { + "id": "th_invent", + "name": "Invent", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/invent", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/invent/", + "description": "Invent" + }, + { + "id": "th_vintagefur", + "name": "Vintagefur", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vintagefur", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vintagefur/", + "description": "Vintagefur" + }, + { + "id": "th_milina", + "name": "Milina", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/milina", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/milina/", + "description": "Milina" + }, + { + "id": "th_snap", + "name": "Snap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/snap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/snap/", + "description": "Snap" + }, + { + "id": "th_furni", + "name": "Furni", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/furni", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/furni/", + "description": "Furni" + }, + { + "id": "th_learner", + "name": "Learner", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/learner", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/learner/", + "description": "Learner" + }, + { + "id": "th_roofer", + "name": "Roofer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Roofer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Roofer/", + "description": "Roofer" + }, + { + "id": "th_labsky", + "name": "Labsky", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Labsky", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Labsky/", + "description": "Labsky" + }, + { + "id": "th_ai_html", + "name": "Ai Html", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/AI-html", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/AI-html/", + "description": "Ai Html" + }, + { + "id": "th_pestkit", + "name": "Pestkit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/PestKit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/PestKit/", + "description": "Pestkit" + }, + { + "id": "th_caterserv", + "name": "Caterserv", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/CaterServ", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/CaterServ/", + "description": "Caterserv" + }, + { + "id": "th_guarder", + "name": "Guarder", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/guarder", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/guarder/", + "description": "Guarder" + }, + { + "id": "th_edgecut", + "name": "Edgecut", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/EdgeCut", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/EdgeCut/", + "description": "Edgecut" + }, + { + "id": "th_esigned", + "name": "Esigned", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/esigned", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/esigned/", + "description": "Esigned" + }, + { + "id": "th_mr_mrs", + "name": "Mr Mrs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mr-mrs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mr-mrs/", + "description": "Mr Mrs" + }, + { + "id": "th_fruitables", + "name": "Fruitables", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/fruitables", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/fruitables/", + "description": "Fruitables" + }, + { + "id": "th_lighten", + "name": "Lighten", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/lighten", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/lighten/", + "description": "Lighten" + }, + { + "id": "th_monica", + "name": "Monica", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/monica", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/monica/", + "description": "Monica" + }, + { + "id": "th_augustine", + "name": "Augustine", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/augustine", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/augustine/", + "description": "Augustine" + }, + { + "id": "th_spurgeon", + "name": "Spurgeon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/spurgeon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/spurgeon/", + "description": "Spurgeon" + }, + { + "id": "th_wise", + "name": "Wise", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/wise", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/wise/", + "description": "Wise" + }, + { + "id": "th_roxo", + "name": "Roxo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/roxo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/roxo/", + "description": "Roxo" + }, + { + "id": "th_apollo", + "name": "Apollo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/apollo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/apollo/", + "description": "Apollo" + }, + { + "id": "th_mueller", + "name": "Mueller", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mueller", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mueller/", + "description": "Mueller" + }, + { + "id": "th_terapia", + "name": "Terapia", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/terapia", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/terapia/", + "description": "Terapia" + }, + { + "id": "th_aranyak", + "name": "Aranyak", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/aranyak", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/aranyak/", + "description": "Aranyak" + }, + { + "id": "th_brainwave_io", + "name": "Brainwave Io", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/brainwave-io", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/brainwave-io/", + "description": "Brainwave Io" + }, + { + "id": "th_uoni", + "name": "Uoni", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Uoni", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Uoni/", + "description": "Uoni" + }, + { + "id": "th_mantis", + "name": "Mantis", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mantis", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mantis/", + "description": "Mantis" + }, + { + "id": "th_environs", + "name": "Environs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/environs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/environs/", + "description": "Free Nature Website Template" + }, + { + "id": "th_mui_boilerplate", + "name": "Mui Boilerplate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/mui-boilerplate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/mui-boilerplate/", + "description": "Mui Boilerplate" + }, + { + "id": "th_motiv", + "name": "Motiv", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/motiv", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/motiv/", + "description": "Motiv" + }, + { + "id": "th_nextjs_material_kit", + "name": "Nextjs Material Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/NextJS-Material-Kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/NextJS-Material-Kit/", + "description": "Nextjs Material Kit" + }, + { + "id": "th_elegent", + "name": "Elegent", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/elegent", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/elegent/", + "description": "Elegent" + }, + { + "id": "th_slim_free_react_mui_template", + "name": "Slim Free React Mui Template", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/slim-free-react-mui-template", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/slim-free-react-mui-template/", + "description": "🚀⚡️Modern and clean react mui Template for easing and faster web development.💻" + }, + { + "id": "th_inception", + "name": "Inception", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/inception", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/inception/", + "description": "This project uses react to consume GitHub APIs and render some features. Its has authoral components, but uses MaterialUiReact components too" + }, + { + "id": "th_nickelfox", + "name": "Nickelfox", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nickelfox", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nickelfox/", + "description": "Nickelfox" + }, + { + "id": "th_bankdash", + "name": "Bankdash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bankdash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bankdash/", + "description": "Bankdash" + }, + { + "id": "th_dabang", + "name": "Dabang", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dabang", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dabang/", + "description": "Dabang" + }, + { + "id": "th_dnx", + "name": "Dnx", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dnx", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dnx/", + "description": "Dnx" + }, + { + "id": "th_accessories", + "name": " Accessories ", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/-Accessories-", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/-Accessories-/", + "description": "Free eCom Website Template" + }, + { + "id": "th_cental", + "name": "Cental", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Cental", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Cental/", + "description": "Cental" + }, + { + "id": "th_venus", + "name": "Venus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/venus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/venus/", + "description": "Venus" + }, + { + "id": "th_horizon", + "name": "Horizon", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/horizon", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/horizon/", + "description": "Horizon" + }, + { + "id": "th_minimal", + "name": "Minimal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/minimal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/minimal/", + "description": "Minimal" + }, + { + "id": "th_waggy", + "name": "Waggy", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/waggy", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/waggy/", + "description": "Free HTML eCom Website Template" + }, + { + "id": "th_amanda", + "name": "Amanda", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/amanda", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/amanda/", + "description": "Amanda" + }, + { + "id": "th_booth", + "name": "Booth", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Booth", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Booth/", + "description": "Booth" + }, + { + "id": "th_pensio", + "name": "Pensio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pensio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pensio/", + "description": "Free HTML Pricing Plan Template" + }, + { + "id": "th_luther", + "name": "Luther", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/luther", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/luther/", + "description": "Free Potfolio Website template" + }, + { + "id": "th_base", + "name": "Base", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/base", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/base/", + "description": "Base" + }, + { + "id": "th_freshen", + "name": "Freshen", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Freshen", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Freshen/", + "description": "Free Bootstrap 5 Laundry Website Template" + }, + { + "id": "th_medwin", + "name": "Medwin", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MedWin", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MedWin/", + "description": "Free Website Template" + }, + { + "id": "th_modol", + "name": "Modol", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/modol", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/modol/", + "description": "Modol" + }, + { + "id": "th_quickstart", + "name": "Quickstart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/QuickStart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/QuickStart/", + "description": "Free Bootstrap Website Template" + }, + { + "id": "th_agriculture", + "name": "Agriculture", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/AgriCulture", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/AgriCulture/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_spike_vue_free", + "name": "Spike Vue Free", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/spike-vue-free", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/spike-vue-free/", + "description": "Spike Vue Free" + }, + { + "id": "th_gp", + "name": "Gp", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/gp", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/gp/", + "description": "Free Bootstrap 5 Multipurpose Website Template" + }, + { + "id": "th_herobiz", + "name": "Herobiz", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/HeroBiz", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/HeroBiz/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_yummy_red", + "name": "Yummy Red", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/yummy-red", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/yummy-red/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_logis_new", + "name": "Logis New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/logis-new", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/logis-new/", + "description": "Free Bootstrap 5 Tranportation Website template" + }, + { + "id": "th_flexstart", + "name": "Flexstart", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/FlexStart", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/FlexStart/", + "description": "Free bootstrap 5 Website Template" + }, + { + "id": "th_kelly", + "name": "Kelly", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Kelly", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Kelly/", + "description": "Free Bootstrap 5 Website template" + }, + { + "id": "th_sailor", + "name": "Sailor", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Sailor", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Sailor/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_knightone", + "name": "Knightone", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/KnightOne", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/KnightOne/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_enno", + "name": "Enno", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/eNno", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/eNno/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_dewi", + "name": "Dewi", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Dewi", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Dewi/", + "description": "Free Bootstrap 5 Website Template" + }, + { + "id": "th_spike_nuxtjs_free", + "name": "Spike Nuxtjs Free", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/spike-nuxtjs-free", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/spike-nuxtjs-free/", + "description": "Spike Nuxtjs Free" + }, + { + "id": "th_prefix", + "name": "Prefix", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Prefix", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Prefix/", + "description": "Free eCom Website Template" + }, + { + "id": "th_materialpro_nextjs_free", + "name": "Materialpro Nextjs Free", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/materialpro-nextjs-free", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/materialpro-nextjs-free/", + "description": "https://themewagon.github.io/materialpro-nextjs-free/" + }, + { + "id": "th_chefs_kitchen_nextjs_free", + "name": "Chefs Kitchen Nextjs Free", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/chefs-kitchen-nextjs-free", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/chefs-kitchen-nextjs-free/", + "description": "Chefs Kitchen Nextjs Free" + }, + { + "id": "th_hielo", + "name": "Hielo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Hielo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Hielo/", + "description": "Hielo" + }, + { + "id": "th_berry_mui", + "name": "Berry Mui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Berry-MUI", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Berry-MUI/", + "description": "Berry Mui" + }, + { + "id": "th_intensify", + "name": "Intensify", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Intensify", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Intensify/", + "description": "Intensify" + }, + { + "id": "th_spike_bootstrap", + "name": "Spike Bootstrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Spike-Bootstrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Spike-Bootstrap/", + "description": "Spike Bootstrap" + }, + { + "id": "th_binary", + "name": "Binary", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Binary", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Binary/", + "description": "Free HTML5 & CSS3 Template" + }, + { + "id": "th_regal", + "name": "Regal", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/regal", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/regal/", + "description": "Regal" + }, + { + "id": "th_matdash", + "name": "Matdash", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/MatDash", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/MatDash/", + "description": "Matdash" + }, + { + "id": "th_modernize_mui", + "name": "Modernize Mui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Modernize-MUI", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Modernize-MUI/", + "description": "Modernize Mui" + }, + { + "id": "th_amoeba", + "name": "Amoeba", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/amoeba", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/amoeba/", + "description": "Amoeba" + }, + { + "id": "th_folio", + "name": "Folio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/folio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/folio/", + "description": "Folio" + }, + { + "id": "th_picto", + "name": "Picto", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/picto", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/picto/", + "description": "Developed by ThemeWagon" + }, + { + "id": "th_iridium", + "name": "Iridium", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Iridium", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Iridium/", + "description": "Iridium" + }, + { + "id": "th_materio", + "name": "Materio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/materio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/materio/", + "description": "Materio" + }, + { + "id": "th_phaseshift", + "name": "Phaseshift", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/PhaseShift", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/PhaseShift/", + "description": "Phaseshift" + }, + { + "id": "th_retrospect", + "name": "Retrospect", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Retrospect", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Retrospect/", + "description": "Retrospect" + }, + { + "id": "th_chefer", + "name": "Chefer", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Chefer", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Chefer/", + "description": "Chefer" + }, + { + "id": "th_koppee", + "name": "Koppee", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Koppee", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Koppee/", + "description": "Koppee" + }, + { + "id": "th_edukate", + "name": "Edukate", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Edukate", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Edukate/", + "description": "Edukate" + }, + { + "id": "th_broadcast", + "name": "Broadcast", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Broadcast", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Broadcast/", + "description": "Broadcast" + }, + { + "id": "th_velora", + "name": "Velora", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Velora", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Velora/", + "description": "Velora" + }, + { + "id": "th_weldork", + "name": "Weldork", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Weldork", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Weldork/", + "description": "Weldork" + }, + { + "id": "th_velora_vue", + "name": "Velora Vue", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Velora-vue", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Velora-vue/", + "description": "Velora Vue" + }, + { + "id": "th_spike_tailwind", + "name": "Spike Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/spike-tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/spike-tailwind/", + "description": "Spike Tailwind" + }, + { + "id": "th_dattaable", + "name": "Dattaable", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/DattaAble", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/DattaAble/", + "description": "Dattaable" + }, + { + "id": "th_tailwind_starter_kit", + "name": "Tailwind Starter Kit", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tailwind-starter-kit", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tailwind-starter-kit/", + "description": "Tailwind Starter Kit" + }, + { + "id": "th_crypgo", + "name": "Crypgo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Crypgo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Crypgo/", + "description": "Crypgo" + }, + { + "id": "th_nova_bootstrap", + "name": "Nova Bootstrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Nova-Bootstrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Nova-Bootstrap/", + "description": "Nova Bootstrap" + }, + { + "id": "th_netic", + "name": "Netic", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Netic", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Netic/", + "description": "Netic" + }, + { + "id": "th_oberlo", + "name": "Oberlo", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Oberlo", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Oberlo/", + "description": "Oberlo" + }, + { + "id": "th_lounge", + "name": "Lounge", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Lounge", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Lounge/", + "description": "Lounge" + }, + { + "id": "th_notus_react", + "name": "Notus React", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Notus-React", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Notus-React/", + "description": "Notus React" + }, + { + "id": "th_notus_next_js", + "name": "Notus Next.Js", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Notus-Next.js", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Notus-Next.js/", + "description": "Notus Next.Js" + }, + { + "id": "th_berry_vue", + "name": "Berry Vue", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/berry-vue", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/berry-vue/", + "description": "Berry Vue" + }, + { + "id": "th_mantis_vue", + "name": "Mantis Vue", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Mantis-Vue", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Mantis-Vue/", + "description": "Mantis Vue" + }, + { + "id": "th_electro_bootstrap", + "name": "Electro Bootstrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Electro-Bootstrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Electro-Bootstrap/", + "description": "Electro Bootstrap" + }, + { + "id": "th_windster", + "name": "Windster", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/windster", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/windster/", + "description": "Windster" + }, + { + "id": "th_nextly", + "name": "Nextly", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nextly", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nextly/", + "description": "Nextly" + }, + { + "id": "th_dasher_ui", + "name": "Dasher Ui", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dasher-ui", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dasher-ui/", + "description": "Dasher Ui" + }, + { + "id": "th_bundle_v2", + "name": "Bundle V2", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/bundle-v2", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/bundle-v2/", + "description": "Bundle V2" + }, + { + "id": "th_pulse_crm", + "name": "Pulse Crm", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/pulse-crm", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/pulse-crm/", + "description": "Pulse Crm" + }, + { + "id": "th_polk", + "name": "Polk", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Polk", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Polk/", + "description": "Polk" + }, + { + "id": "th_volt_bootstrap", + "name": "Volt Bootstrap", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/volt-Bootstrap", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/volt-Bootstrap/", + "description": "Volt Bootstrap" + }, + { + "id": "th_cryptoflow", + "name": "Cryptoflow", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cryptoflow", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cryptoflow/", + "description": "Cryptoflow" + }, + { + "id": "th_charitize", + "name": "Charitize", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Charitize", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Charitize/", + "description": "Charitize" + }, + { + "id": "th_hostpro", + "name": "Hostpro", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/hostpro", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/hostpro/", + "description": "Hostpro" + }, + { + "id": "th_avision", + "name": "Avision", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/avision", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/avision/", + "description": "Avision" + }, + { + "id": "th_base_tailwind", + "name": "Base Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Base-Tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Base-Tailwind/", + "description": "Base Tailwind" + }, + { + "id": "th_play_tailwind", + "name": "Play Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/play-tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/play-tailwind/", + "description": "Play Tailwind" + }, + { + "id": "th_faunaflora", + "name": "Faunaflora", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/FaunaFlora", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/FaunaFlora/", + "description": "Faunaflora" + }, + { + "id": "th_crypto_nextjs", + "name": "Crypto Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/crypto-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/crypto-nextjs/", + "description": "Crypto Nextjs" + }, + { + "id": "th_dsign", + "name": "Dsign", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dSign", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dSign/", + "description": "Dsign" + }, + { + "id": "th_bliss", + "name": "Bliss", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Bliss", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Bliss/", + "description": "Bliss" + }, + { + "id": "th_nova_bootstrap5_beta1", + "name": "Nova Bootstrap5 Beta1", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Nova-Bootstrap5_beta1", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Nova-Bootstrap5_beta1/", + "description": "Nova Bootstrap5 Beta1" + }, + { + "id": "th_flat", + "name": "Flat", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Flat", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Flat/", + "description": "Flat" + }, + { + "id": "th_venus_nextjs", + "name": "Venus Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/venus-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/venus-nextjs/", + "description": "Venus Free Next.js Website Template" + }, + { + "id": "th_plasery", + "name": "Plasery", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Plasery", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Plasery/", + "description": "Plasery" + }, + { + "id": "th_poseify", + "name": "Poseify", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Poseify", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Poseify/", + "description": "Poseify" + }, + { + "id": "th_sustainable_nextjs", + "name": "Sustainable Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/sustainable-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/sustainable-nextjs/", + "description": "Sustainable Nextjs" + }, + { + "id": "th_muvid", + "name": "Muvid", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Muvid", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Muvid/", + "description": "Muvid" + }, + { + "id": "th_advanced", + "name": "Advanced", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/advanced", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/advanced/", + "description": "Advanced" + }, + { + "id": "th_neutral_new", + "name": "Neutral New", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/neutral-new", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/neutral-new/", + "description": "Neutral New" + }, + { + "id": "th_symposium_nextjs", + "name": "Symposium Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/symposium-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/symposium-nextjs/", + "description": "symposium-nextjs" + }, + { + "id": "th_medinova", + "name": "Medinova", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Medinova", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Medinova/", + "description": "Medinova" + }, + { + "id": "th_pixelize", + "name": "Pixelize", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Pixelize", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Pixelize/", + "description": "Pixelize" + }, + { + "id": "th_geeky_nextjs", + "name": "Geeky Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/geeky-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/geeky-nextjs/", + "description": "Geeky Nextjs" + }, + { + "id": "th_quantam", + "name": "Quantam", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Quantam", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Quantam/", + "description": "Quantam" + }, + { + "id": "th_globalbank", + "name": "Globalbank", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/GlobalBank", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/GlobalBank/", + "description": "Globalbank" + }, + { + "id": "th_docsta", + "name": "Docsta", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/docsta", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/docsta/", + "description": "Docsta" + }, + { + "id": "th_typefolio", + "name": "Typefolio", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Typefolio", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Typefolio/", + "description": "Typefolio - NextJs Template" + }, + { + "id": "th_tiyagolfclub", + "name": "Tiyagolfclub", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/TiyaGolfClub", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/TiyaGolfClub/", + "description": "Tiyagolfclub" + }, + { + "id": "th_acidus", + "name": "Acidus", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/acidus", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/acidus/", + "description": "Initial commit" + }, + { + "id": "th_impulse", + "name": "Impulse", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/impulse", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/impulse/", + "description": "Impulse" + }, + { + "id": "th_dentista", + "name": "Dentista", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/dentista", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/dentista/", + "description": "Dentista" + }, + { + "id": "th_cleopatra_tailwind", + "name": "Cleopatra Tailwind", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/cleopatra-tailwind", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/cleopatra-tailwind/", + "description": "Cleopatra Tailwind" + }, + { + "id": "th_nextplate_nextjs", + "name": "Nextplate Nextjs", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/nextplate-nextjs", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/nextplate-nextjs/", + "description": "Nextplate - Nextjs Boilerplate" + }, + { + "id": "th_material_shadcn", + "name": "Material Shadcn", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/material-shadcn", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/material-shadcn/", + "description": "Material Shadcn" + }, + { + "id": "th_volcan", + "name": "Volcan", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Volcan", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Volcan/", + "description": "Volcan" + }, + { + "id": "th_atlas_v2_0_0", + "name": "Atlas V2.0.0", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/atlas-v2.0.0", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/atlas-v2.0.0/", + "description": "Atlas V2.0.0" + }, + { + "id": "th_atom", + "name": "Atom", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/atom", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/atom/", + "description": "Atom" + }, + { + "id": "th_agentix_html", + "name": "Agentix Html", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/Agentix-html", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/Agentix-html/", + "description": "Agentix Html" + }, + { + "id": "th_tailwind_bundle", + "name": "Tailwind Bundle", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/tailwind-bundle", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/tailwind-bundle/", + "description": "50 Tailwind CSS website templates" + }, + { + "id": "th_argon_design_system_angular", + "name": "Argon Design System Angular", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/argon-design-system-angular", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/argon-design-system-angular/", + "description": "Argon Design System Angular" + }, + { + "id": "th_block", + "name": "Block", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/block", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/block/", + "description": "Block – Tailwind CSS HTML Template Free" + }, + { + "id": "th_daiva", + "name": "Daiva", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/daiva", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/daiva/", + "description": "Daiva - 6 pages tailwind template" + }, + { + "id": "th_furnish", + "name": "Furnish", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/furnish", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/furnish/", + "description": "Furnish Free Bootstrap 5 Furniture Website Template" + }, + { + "id": "th_coach", + "name": "Coach", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/coach", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/coach/", + "description": "Coach" + }, + { + "id": "th_vaultedge", + "name": "Vaultedge", + "source": "themewagon", + "repo_url": "https://github.com/themewagon/vaultedge", + "sparse_path": ".", + "preview_url": "https://themewagon.github.io/vaultedge/", + "description": "VaultEdge – Financial & Loan Services Website Template" + }, + { + "id": "da_includes", + "name": " Includes", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "_includes", + "preview_url": "https://dawidolko.github.io/Website-Templates/_includes/", + "description": " Includes" + }, + { + "id": "da_layouts", + "name": " Layouts", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "_layouts", + "preview_url": "https://dawidolko.github.io/Website-Templates/_layouts/", + "description": " Layouts" + }, + { + "id": "da_ace_responsive_coming_soon_template", + "name": "Ace Responsive Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "ace-responsive-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/ace-responsive-coming-soon-template/", + "description": "Ace Responsive Coming Soon Template" + }, + { + "id": "da_aerosky_real_estate_html_responsive_website_template", + "name": "Aerosky Real Estate Html Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "aerosky-real-estate-html-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/aerosky-real-estate-html-responsive-website-template/", + "description": "Aerosky Real Estate Html Responsive Website Template" + }, + { + "id": "da_alive_responsive_coming_soon_template", + "name": "Alive Responsive Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "alive-responsive-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/alive-responsive-coming-soon-template/", + "description": "Alive Responsive Coming Soon Template" + }, + { + "id": "da_avenger_multi_purpose_responsive_html5_bootstrap_template", + "name": "Avenger Multi Purpose Responsive Html5 Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "avenger-multi-purpose-responsive-html5-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/avenger-multi-purpose-responsive-html5-bootstrap-template/", + "description": "Avenger Multi Purpose Responsive Html5 Bootstrap Template" + }, + { + "id": "da_basic_free_html5_template_for_multi_purpose", + "name": "Basic Free Html5 Template For Multi Purpose", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "basic-free-html5-template-for-multi-purpose", + "preview_url": "https://dawidolko.github.io/Website-Templates/basic-free-html5-template-for-multi-purpose/", + "description": "Basic Free Html5 Template For Multi Purpose" + }, + { + "id": "da_blazer_responsive_html5_coming_soon_template", + "name": "Blazer Responsive Html5 Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "blazer-responsive-html5-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/blazer-responsive-html5-coming-soon-template/", + "description": "Blazer Responsive Html5 Coming Soon Template" + }, + { + "id": "da_city_square_bootstrap_responsive_web_template", + "name": "City Square Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "city-square-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/city-square-bootstrap-responsive-web-template/", + "description": "City Square Bootstrap Responsive Web Template" + }, + { + "id": "da_coming_soon_responsive_theme_jack", + "name": "Coming Soon Responsive Theme Jack", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "coming-soon-responsive-theme-jack", + "preview_url": "https://dawidolko.github.io/Website-Templates/coming-soon-responsive-theme-jack/", + "description": "Coming Soon Responsive Theme Jack" + }, + { + "id": "da_css3_bw", + "name": "Css3 Bw", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "css3-bw", + "preview_url": "https://dawidolko.github.io/Website-Templates/css3-bw/", + "description": "Css3 Bw" + }, + { + "id": "da_css3_drop_shadows", + "name": "Css3 Drop Shadows", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "css3-drop-shadows", + "preview_url": "https://dawidolko.github.io/Website-Templates/css3-drop-shadows/", + "description": "Css3 Drop Shadows" + }, + { + "id": "da_css3_seascape_two", + "name": "Css3 Seascape Two", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "css3-seascape-two", + "preview_url": "https://dawidolko.github.io/Website-Templates/css3-seascape-two/", + "description": "Css3 Seascape Two" + }, + { + "id": "da_css3_seascape", + "name": "Css3 Seascape", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "css3-seascape", + "preview_url": "https://dawidolko.github.io/Website-Templates/css3-seascape/", + "description": "Css3 Seascape" + }, + { + "id": "da_delight_multi_purpose_free_html5_website_template", + "name": "Delight Multi Purpose Free Html5 Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "delight-multi-purpose-free-html5-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/delight-multi-purpose-free-html5-website-template/", + "description": "Delight Multi Purpose Free Html5 Website Template" + }, + { + "id": "da_dreamy", + "name": "Dreamy", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "dreamy", + "preview_url": "https://dawidolko.github.io/Website-Templates/dreamy/", + "description": "Dreamy" + }, + { + "id": "da_drifting", + "name": "Drifting", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "drifting", + "preview_url": "https://dawidolko.github.io/Website-Templates/drifting/", + "description": "Drifting" + }, + { + "id": "da_droll", + "name": "Droll", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "droll", + "preview_url": "https://dawidolko.github.io/Website-Templates/droll/", + "description": "Droll" + }, + { + "id": "da_elegant_free_multi_purpose_bootstrap_responsive_template", + "name": "Elegant Free Multi Purpose Bootstrap Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "elegant-free-multi-purpose-bootstrap-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/elegant-free-multi-purpose-bootstrap-responsive-template/", + "description": "Elegant Free Multi Purpose Bootstrap Responsive Template" + }, + { + "id": "da_endure_html5_responsive_coming_soon_template", + "name": "Endure Html5 Responsive Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "endure-html5-responsive-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/endure-html5-responsive-coming-soon-template/", + "description": "Endure Html5 Responsive Coming Soon Template" + }, + { + "id": "da_extent", + "name": "Extent", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "extent", + "preview_url": "https://dawidolko.github.io/Website-Templates/extent/", + "description": "Extent" + }, + { + "id": "da_free_bootstrap_template_for_multi_purpose_ladder", + "name": "Free Bootstrap Template For Multi Purpose Ladder", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "free-bootstrap-template-for-multi-purpose-ladder", + "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-for-multi-purpose-ladder/", + "description": "Free Bootstrap Template For Multi Purpose Ladder" + }, + { + "id": "da_free_bootstrap_template_real_estate_my_home", + "name": "Free Bootstrap Template Real Estate My Home", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "free-bootstrap-template-real-estate-my-home", + "preview_url": "https://dawidolko.github.io/Website-Templates/free-bootstrap-template-real-estate-my-home/", + "description": "Free Bootstrap Template Real Estate My Home" + }, + { + "id": "da_full_slider", + "name": "Full Slider", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "full-slider", + "preview_url": "https://dawidolko.github.io/Website-Templates/full-slider/", + "description": "Full Slider" + }, + { + "id": "da_funky_cool_blue", + "name": "Funky Cool Blue", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "funky-cool-blue", + "preview_url": "https://dawidolko.github.io/Website-Templates/funky-cool-blue/", + "description": "Funky Cool Blue" + }, + { + "id": "da_gila", + "name": "Gila", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "gila", + "preview_url": "https://dawidolko.github.io/Website-Templates/gila/", + "description": "Gila" + }, + { + "id": "da_glips_responsive_free_coming_soon_bootstrap_template", + "name": "Glips Responsive Free Coming Soon Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "glips-responsive-free-coming-soon-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/glips-responsive-free-coming-soon-bootstrap-template/", + "description": "Glips Responsive Free Coming Soon Bootstrap Template" + }, + { + "id": "da_grand_free_bootstrap_responsive_website_template", + "name": "Grand Free Bootstrap Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "grand-free-bootstrap-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/grand-free-bootstrap-responsive-website-template/", + "description": "Grand Free Bootstrap Responsive Website Template" + }, + { + "id": "da_grandure_bootstrap_free_coming_soon_template", + "name": "Grandure Bootstrap Free Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "grandure-bootstrap-free-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/grandure-bootstrap-free-coming-soon-template/", + "description": "Grandure Bootstrap Free Coming Soon Template" + }, + { + "id": "da_grass_stains", + "name": "Grass Stains", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "grass-stains", + "preview_url": "https://dawidolko.github.io/Website-Templates/grass-stains/", + "description": "Grass Stains" + }, + { + "id": "da_green_corp_flat_free_responsive_mobile_website", + "name": "Green Corp Flat Free Responsive Mobile Website", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "green-corp-flat-free-responsive-mobile-website", + "preview_url": "https://dawidolko.github.io/Website-Templates/green-corp-flat-free-responsive-mobile-website/", + "description": "Green Corp Flat Free Responsive Mobile Website" + }, + { + "id": "da_greenery", + "name": "Greenery", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "greenery", + "preview_url": "https://dawidolko.github.io/Website-Templates/greenery/", + "description": "Greenery" + }, + { + "id": "da_gunmetal_portal", + "name": "Gunmetal Portal", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "gunmetal-portal", + "preview_url": "https://dawidolko.github.io/Website-Templates/gunmetal-portal/", + "description": "Gunmetal Portal" + }, + { + "id": "da_half_slider", + "name": "Half Slider", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "half-slider", + "preview_url": "https://dawidolko.github.io/Website-Templates/half-slider/", + "description": "Half Slider" + }, + { + "id": "da_html5_responsive_coming_soon_page", + "name": "Html5 Responsive Coming Soon Page", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "html5-responsive-coming-soon-page", + "preview_url": "https://dawidolko.github.io/Website-Templates/html5-responsive-coming-soon-page/", + "description": "Html5 Responsive Coming Soon Page" + }, + { + "id": "da_icon_real_estate_developers_free_responsive_html_template", + "name": "Icon Real Estate Developers Free Responsive Html Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "icon-real-estate-developers-free-responsive-html-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/icon-real-estate-developers-free-responsive-html-template/", + "description": "Icon Real Estate Developers Free Responsive Html Template" + }, + { + "id": "da_indus_free_coming_soon_bootstrap_responsive_template", + "name": "Indus Free Coming Soon Bootstrap Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "indus-free-coming-soon-bootstrap-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/indus-free-coming-soon-bootstrap-responsive-template/", + "description": "Indus Free Coming Soon Bootstrap Responsive Template" + }, + { + "id": "da_interio", + "name": "Interio", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "interio", + "preview_url": "https://dawidolko.github.io/Website-Templates/interio/", + "description": "Interio" + }, + { + "id": "da_internet_portal", + "name": "Internet Portal", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "internet-portal", + "preview_url": "https://dawidolko.github.io/Website-Templates/internet-portal/", + "description": "Internet Portal" + }, + { + "id": "da_lazydays", + "name": "Lazydays", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "lazydays", + "preview_url": "https://dawidolko.github.io/Website-Templates/lazydays/", + "description": "Lazydays" + }, + { + "id": "da_light_coming_soon_html_responsive_template", + "name": "Light Coming Soon Html Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "light-coming-soon-html-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/light-coming-soon-html-responsive-template/", + "description": "Light Coming Soon Html Responsive Template" + }, + { + "id": "da_metropolis", + "name": "Metropolis", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "metropolis", + "preview_url": "https://dawidolko.github.io/Website-Templates/metropolis/", + "description": "Metropolis" + }, + { + "id": "da_midway_free_html5_website_template_for_multi_purpose", + "name": "Midway Free Html5 Website Template For Multi Purpose", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "midway-free-html5-website-template-for-multi-purpose", + "preview_url": "https://dawidolko.github.io/Website-Templates/midway-free-html5-website-template-for-multi-purpose/", + "description": "Midway Free Html5 Website Template For Multi Purpose" + }, + { + "id": "da_missunderstood", + "name": "Missunderstood", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "missunderstood", + "preview_url": "https://dawidolko.github.io/Website-Templates/missunderstood/", + "description": "Missunderstood" + }, + { + "id": "da_moon_free_bootstrap_coming_soon_template", + "name": "Moon Free Bootstrap Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "moon-free-bootstrap-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/moon-free-bootstrap-coming-soon-template/", + "description": "Moon Free Bootstrap Coming Soon Template" + }, + { + "id": "da_next_responsive_coming_soon_bootstrap_template", + "name": "Next Responsive Coming Soon Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "next-responsive-coming-soon-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/next-responsive-coming-soon-bootstrap-template/", + "description": "Next Responsive Coming Soon Bootstrap Template" + }, + { + "id": "da_orange_coming_soon_html_responsive_template", + "name": "Orange Coming Soon Html Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "orange-coming-soon-html-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/orange-coming-soon-html-responsive-template/", + "description": "Orange Coming Soon Html Responsive Template" + }, + { + "id": "da_park_city_bootstrap_html_real_estate_responsive_template", + "name": "Park City Bootstrap Html Real Estate Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "park-city-bootstrap-html-real-estate-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/park-city-bootstrap-html-real-estate-responsive-template/", + "description": "Park City Bootstrap Html Real Estate Responsive Template" + }, + { + "id": "da_plain", + "name": "Plain", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "plain", + "preview_url": "https://dawidolko.github.io/Website-Templates/plain/", + "description": "Plain" + }, + { + "id": "da_prosimii", + "name": "Prosimii", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "prosimii", + "preview_url": "https://dawidolko.github.io/Website-Templates/prosimii/", + "description": "Prosimii" + }, + { + "id": "da_relic_portal", + "name": "Relic Portal", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "relic-portal", + "preview_url": "https://dawidolko.github.io/Website-Templates/relic-portal/", + "description": "Relic Portal" + }, + { + "id": "da_reveal", + "name": "Reveal", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "reveal", + "preview_url": "https://dawidolko.github.io/Website-Templates/reveal/", + "description": "Reveal" + }, + { + "id": "da_rider_free_multi_purpose_bootstrap_template", + "name": "Rider Free Multi Purpose Bootstrap Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "rider-free-multi-purpose-bootstrap-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/rider-free-multi-purpose-bootstrap-template/", + "description": "Rider Free Multi Purpose Bootstrap Template" + }, + { + "id": "da_sample_site", + "name": "Sample Site", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "sample_site", + "preview_url": "https://dawidolko.github.io/Website-Templates/sample_site/", + "description": "Sample Site" + }, + { + "id": "da_simply_bootstrap_coming_soon_template", + "name": "Simply Bootstrap Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "simply-bootstrap-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/simply-bootstrap-coming-soon-template/", + "description": "Simply Bootstrap Coming Soon Template" + }, + { + "id": "da_sinorca", + "name": "Sinorca", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "sinorca", + "preview_url": "https://dawidolko.github.io/Website-Templates/sinorca/", + "description": "Sinorca" + }, + { + "id": "da_startbootstrap_grayscale_1_0_3", + "name": "Grayscale 1.0.3", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "startbootstrap-grayscale-1.0.3", + "preview_url": "https://dawidolko.github.io/Website-Templates/startbootstrap-grayscale-1.0.3/", + "description": "Grayscale 1.0.3" + }, + { + "id": "da_street_life", + "name": "Street Life", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "street-life", + "preview_url": "https://dawidolko.github.io/Website-Templates/street-life/", + "description": "Street Life" + }, + { + "id": "da_stylish_bootstrap_coming_soon_template", + "name": "Stylish Bootstrap Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "stylish-bootstrap-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/stylish-bootstrap-coming-soon-template/", + "description": "Stylish Bootstrap Coming Soon Template" + }, + { + "id": "da_target_multipurpose_free_bootstrap_responsive_template", + "name": "Target Multipurpose Free Bootstrap Responsive Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "target-multipurpose-free-bootstrap-responsive-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/target-multipurpose-free-bootstrap-responsive-template/", + "description": "Target Multipurpose Free Bootstrap Responsive Template" + }, + { + "id": "da_theme_changer_template", + "name": "Theme Changer Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "theme-changer-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/theme-changer-template/", + "description": "Theme Changer Template" + }, + { + "id": "da_themer_bootstrap_responsive_web_template", + "name": "Themer Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "themer-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/themer-bootstrap-responsive-web-template/", + "description": "Themer Bootstrap Responsive Web Template" + }, + { + "id": "da_thin_green_line", + "name": "Thin Green Line", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "thin-green-line", + "preview_url": "https://dawidolko.github.io/Website-Templates/thin-green-line/", + "description": "Thin Green Line" + }, + { + "id": "da_trendset_coming_soon_responsive_theme", + "name": "Trendset Coming Soon Responsive Theme", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "trendset-coming-soon-responsive-theme", + "preview_url": "https://dawidolko.github.io/Website-Templates/trendset-coming-soon-responsive-theme/", + "description": "Trendset Coming Soon Responsive Theme" + }, + { + "id": "da_trendy_free_bootstrap_responsive_website_template", + "name": "Trendy Free Bootstrap Responsive Website Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "trendy-free-bootstrap-responsive-website-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/trendy-free-bootstrap-responsive-website-template/", + "description": "Trendy Free Bootstrap Responsive Website Template" + }, + { + "id": "da_unique_free_responsive_html5_template", + "name": "Unique Free Responsive Html5 Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "unique-free-responsive-html5-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/unique-free-responsive-html5-template/", + "description": "Unique Free Responsive Html5 Template" + }, + { + "id": "da_vento_coming_soon_responsive_theme", + "name": "Vento Coming Soon Responsive Theme", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "vento-coming-soon-responsive-theme", + "preview_url": "https://dawidolko.github.io/Website-Templates/vento-coming-soon-responsive-theme/", + "description": "Vento Coming Soon Responsive Theme" + }, + { + "id": "da_viver_free_html5_bootstrap_coming_soon_template", + "name": "Viver Free Html5 Bootstrap Coming Soon Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "viver-free-html5-bootstrap-coming-soon-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/viver-free-html5-bootstrap-coming-soon-template/", + "description": "Viver Free Html5 Bootstrap Coming Soon Template" + }, + { + "id": "da_webtrends_free_bootstrap_responsive_web_template", + "name": "Webtrends Free Bootstrap Responsive Web Template", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "webtrends-free-bootstrap-responsive-web-template", + "preview_url": "https://dawidolko.github.io/Website-Templates/webtrends-free-bootstrap-responsive-web-template/", + "description": "Webtrends Free Bootstrap Responsive Web Template" + }, + { + "id": "da_zenlike", + "name": "Zenlike", + "source": "dawidolko", + "repo_url": "https://github.com/dawidolko/Website-Templates", + "sparse_path": "zenlike", + "preview_url": "https://dawidolko.github.io/Website-Templates/zenlike/", + "description": "Zenlike" + } + ] + } + ] } \ No newline at end of file