樣版網址:https://www.free-css.com/free-css-templates/page293/giftos
1.從樣版網址下載giftos。
2.先把檔名(Giftos Free Website Template - Free-CSS.com.zip)變短成Giftos.zip。3.建立django專案
4.查看縮壓檔的內容。
5.解壓縮後,把html放到templates。6.把css、fonts、images、js等目錄放在static目錄下。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | """ Django settings for Giftos project. Generated by 'django-admin startproject' using Django 4.2.9. For more information on this file, see https://docs.djangoproject.com/en/4.2/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/4.2/ref/settings/ """ from pathlib import Path # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'django-insecure-q#f=#pbpi)f!l11+n+i$61vm8q*&ldgzw+hh&tu7r6y_*^!ant' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = ["*"] # Application definition INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'myapp', ] MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', ] ROOT_URLCONF = 'Giftos.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [BASE_DIR / 'templates'], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'Giftos.wsgi.application' # Database # https://docs.djangoproject.com/en/4.2/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': BASE_DIR / 'db.sqlite3', } } # Password validation # https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators AUTH_PASSWORD_VALIDATORS = [ { 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', }, { 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', }, { 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', }, { 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', }, ] # Internationalization # https://docs.djangoproject.com/en/4.2/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/4.2/howto/static-files/ STATIC_URL = 'static/' STATICFILES_DIRS = [ BASE_DIR/'static', ] # Default primary key field type # https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' |
8.修改Giftos\Giftos\urls.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | """ URL configuration for Giftos project. The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/4.2/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: path('', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.urls import include, path 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin from django.urls import path from myapp.views import index urlpatterns = [ path('admin/', admin.site.urls), path('', index), path('index/', index), ] |
9.修改Giftos\myapp\views.py
1 2 3 4 5 | from django.shortcuts import render # Create your views here. def index(request): return render(request, "index.html", locals()) |
10.修改Giftos\templates\index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 | <!DOCTYPE html> <html> <head> {% load static %} <!-- Basic --> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- Mobile Metas --> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <!-- Site Metas --> <meta name="keywords" content="" /> <meta name="description" content="" /> <meta name="author" content="" /> <link rel="shortcut icon" href="{% static 'images/favicon.png' %}" type="image/x-icon"> <title> Giftos </title> <!-- slider stylesheet --> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" /> <!-- bootstrap core css --> <link rel="stylesheet" type="text/css" href="{% static 'css/bootstrap.css' %}" /> <!-- Custom styles for this template --> <link href="{% static 'css/style.css' %}" rel="stylesheet" /> <!-- responsive style --> <link href="{% static 'css/responsive.css' %}" rel="stylesheet" /> </head> <body> <div class="hero_area"> <!-- header section strats --> <header class="header_section"> <nav class="navbar navbar-expand-lg custom_nav-container "> <a class="navbar-brand" href="index.html"> <span> Giftos </span> </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class=""></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav "> <li class="nav-item active"> <a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a> </li> <li class="nav-item"> <a class="nav-link" href="shop.html"> Shop </a> </li> <li class="nav-item"> <a class="nav-link" href="why.html"> Why Us </a> </li> <li class="nav-item"> <a class="nav-link" href="testimonial.html"> Testimonial </a> </li> <li class="nav-item"> <a class="nav-link" href="contact.html">Contact Us</a> </li> </ul> <div class="user_option"> <a href=""> <i class="fa fa-user" aria-hidden="true"></i> <span> Login </span> </a> <a href=""> <i class="fa fa-shopping-bag" aria-hidden="true"></i> </a> <form class="form-inline "> <button class="btn nav_search-btn" type="submit"> <i class="fa fa-search" aria-hidden="true"></i> </button> </form> </div> </div> </nav> </header> <!-- end header section --> <!-- slider section --> <section class="slider_section"> <div class="slider_container"> <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel"> <div class="carousel-inner"> <div class="carousel-item active"> <div class="container-fluid"> <div class="row"> <div class="col-md-7"> <div class="detail-box"> <h1> Welcome To Our <br> Gift Shop </h1> <p> Sequi perspiciatis nulla reiciendis, rem, tenetur impedit, eveniet non necessitatibus error distinctio mollitia suscipit. Nostrum fugit doloribus consequatur distinctio esse, possimus maiores aliquid repellat beatae cum, perspiciatis enim, accusantium perferendis. </p> <a href=""> Contact Us </a> </div> </div> <div class="col-md-5 "> <div class="img-box"> <img src="{% static 'images/slider-img.png' %}" alt="" /> </div> </div> </div> </div> </div> <div class="carousel-item "> <div class="container-fluid"> <div class="row"> <div class="col-md-7"> <div class="detail-box"> <h1> Welcome To Our <br> Gift Shop </h1> <p> Sequi perspiciatis nulla reiciendis, rem, tenetur impedit, eveniet non necessitatibus error distinctio mollitia suscipit. Nostrum fugit doloribus consequatur distinctio esse, possimus maiores aliquid repellat beatae cum, perspiciatis enim, accusantium perferendis. </p> <a href=""> Contact Us </a> </div> </div> <div class="col-md-5 "> <div class="img-box"> <img src="{% static 'images/slider-img.png' %}" alt="" /> </div> </div> </div> </div> </div> <div class="carousel-item "> <div class="container-fluid"> <div class="row"> <div class="col-md-7"> <div class="detail-box"> <h1> Welcome To Our <br> Gift Shop </h1> <p> Sequi perspiciatis nulla reiciendis, rem, tenetur impedit, eveniet non necessitatibus error distinctio mollitia suscipit. Nostrum fugit doloribus consequatur distinctio esse, possimus maiores aliquid repellat beatae cum, perspiciatis enim, accusantium perferendis. </p> <a href=""> Contact Us </a> </div> </div> <div class="col-md-5 "> <div class="img-box"> <img src="{% static 'images/slider-img.png' %}" alt="" /> </div> </div> </div> </div> </div> </div> <div class="carousel_btn-box"> <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev"> <i class="fa fa-arrow-left" aria-hidden="true"></i> <span class="sr-only">Previous</span> </a> <img src="{% static 'images/line.png' %}" alt="" /> <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next"> <i class="fa fa-arrow-right" aria-hidden="true"></i> <span class="sr-only">Next</span> </a> </div> </div> </div> </section> <!-- end slider section --> </div> <!-- end hero area --> <!-- shop section --> <section class="shop_section layout_padding"> <div class="container"> <div class="heading_container heading_center"> <h2> Latest Products </h2> </div> <div class="row"> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p1.png' %}" alt=""> </div> <div class="detail-box"> <h6> Ring </h6> <h6> Price <span> $200 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p2.png' %}" alt=""> </div> <div class="detail-box"> <h6> Watch </h6> <h6> Price <span> $300 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p3.png' %}" alt=""> </div> <div class="detail-box"> <h6> Teddy Bear </h6> <h6> Price <span> $110 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p4.png' %}" alt=""> </div> <div class="detail-box"> <h6> Flower Bouquet </h6> <h6> Price <span> $45 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p5.png' %}" alt=""> </div> <div class="detail-box"> <h6> Teddy Bear </h6> <h6> Price <span> $95 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p6.png' %}" alt=""> </div> <div class="detail-box"> <h6> Flower Bouquet </h6> <h6> Price <span> $70 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p7.png' %}" alt=""> </div> <div class="detail-box"> <h6> Watch </h6> <h6> Price <span> $400 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> <div class="col-sm-6 col-md-4 col-lg-3"> <div class="box"> <a href=""> <div class="img-box"> <img src="{% static 'images/p8.png' %}" alt=""> </div> <div class="detail-box"> <h6> Ring </h6> <h6> Price <span> $450 </span> </h6> </div> <div class="new"> <span> New </span> </div> </a> </div> </div> </div> <div class="btn-box"> <a href=""> View All Products </a> </div> </div> </section> <!-- end shop section --> <!-- saving section --> <section class="saving_section "> <div class="box"> <div class="container-fluid"> <div class="row"> <div class="col-lg-6"> <div class="img-box"> <img src="{% static 'images/saving-img.png' %}" alt=""> </div> </div> <div class="col-lg-6"> <div class="detail-box"> <div class="heading_container"> <h2> Best Savings on <br> new arrivals </h2> </div> <p> Qui ex dolore at repellat, quia neque doloribus omnis adipisci, ipsum eos odio fugit ut eveniet blanditiis praesentium totam non nostrum dignissimos nihil eius facere et eaque. Qui, animi obcaecati. </p> <div class="btn-box"> <a href="#" class="btn1"> Buy Now </a> <a href="#" class="btn2"> See More </a> </div> </div> </div> </div> </div> </div> </section> <!-- end saving section --> <!-- why section --> <section class="why_section layout_padding"> <div class="container"> <div class="heading_container heading_center"> <h2> Why Shop With Us </h2> </div> <div class="row"> <div class="col-md-4"> <div class="box "> <div class="img-box"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve"> <g> <g> <path d="M476.158,231.363l-13.259-53.035c3.625-0.77,6.345-3.986,6.345-7.839v-8.551c0-18.566-15.105-33.67-33.67-33.67h-60.392 V110.63c0-9.136-7.432-16.568-16.568-16.568H50.772c-9.136,0-16.568,7.432-16.568,16.568V256c0,4.427,3.589,8.017,8.017,8.017 c4.427,0,8.017-3.589,8.017-8.017V110.63c0-0.295,0.239-0.534,0.534-0.534h307.841c0.295,0,0.534,0.239,0.534,0.534v145.372 c0,4.427,3.589,8.017,8.017,8.017c4.427,0,8.017-3.589,8.017-8.017v-9.088h94.569c0.008,0,0.014,0.002,0.021,0.002 c0.008,0,0.015-0.001,0.022-0.001c11.637,0.008,21.518,7.646,24.912,18.171h-24.928c-4.427,0-8.017,3.589-8.017,8.017v17.102 c0,13.851,11.268,25.119,25.119,25.119h9.086v35.273h-20.962c-6.886-19.883-25.787-34.205-47.982-34.205 s-41.097,14.322-47.982,34.205h-3.86v-60.393c0-4.427-3.589-8.017-8.017-8.017c-4.427,0-8.017,3.589-8.017,8.017v60.391H192.817 c-6.886-19.883-25.787-34.205-47.982-34.205s-41.097,14.322-47.982,34.205H50.772c-0.295,0-0.534-0.239-0.534-0.534v-17.637 h34.739c4.427,0,8.017-3.589,8.017-8.017s-3.589-8.017-8.017-8.017H8.017c-4.427,0-8.017,3.589-8.017,8.017 s3.589,8.017,8.017,8.017h26.188v17.637c0,9.136,7.432,16.568,16.568,16.568h43.304c-0.002,0.178-0.014,0.355-0.014,0.534 c0,27.996,22.777,50.772,50.772,50.772s50.772-22.776,50.772-50.772c0-0.18-0.012-0.356-0.014-0.534h180.67 c-0.002,0.178-0.014,0.355-0.014,0.534c0,27.996,22.777,50.772,50.772,50.772c27.995,0,50.772-22.776,50.772-50.772 c0-0.18-0.012-0.356-0.014-0.534h26.203c4.427,0,8.017-3.589,8.017-8.017v-85.511C512,251.989,496.423,234.448,476.158,231.363z M375.182,144.301h60.392c9.725,0,17.637,7.912,17.637,17.637v0.534h-78.029V144.301z M375.182,230.881v-52.376h71.235 l13.094,52.376H375.182z M144.835,401.904c-19.155,0-34.739-15.583-34.739-34.739s15.584-34.739,34.739-34.739 c19.155,0,34.739,15.583,34.739,34.739S163.99,401.904,144.835,401.904z M427.023,401.904c-19.155,0-34.739-15.583-34.739-34.739 s15.584-34.739,34.739-34.739c19.155,0,34.739,15.583,34.739,34.739S446.178,401.904,427.023,401.904z M495.967,299.29h-9.086 c-5.01,0-9.086-4.076-9.086-9.086v-9.086h18.171V299.29z" /> </g> </g> <g> <g> <path d="M144.835,350.597c-9.136,0-16.568,7.432-16.568,16.568c0,9.136,7.432,16.568,16.568,16.568 c9.136,0,16.568-7.432,16.568-16.568C161.403,358.029,153.971,350.597,144.835,350.597z" /> </g> </g> <g> <g> <path d="M427.023,350.597c-9.136,0-16.568,7.432-16.568,16.568c0,9.136,7.432,16.568,16.568,16.568 c9.136,0,16.568-7.432,16.568-16.568C443.591,358.029,436.159,350.597,427.023,350.597z" /> </g> </g> <g> <g> <path d="M332.96,316.393H213.244c-4.427,0-8.017,3.589-8.017,8.017s3.589,8.017,8.017,8.017H332.96 c4.427,0,8.017-3.589,8.017-8.017S337.388,316.393,332.96,316.393z" /> </g> </g> <g> <g> <path d="M127.733,282.188H25.119c-4.427,0-8.017,3.589-8.017,8.017s3.589,8.017,8.017,8.017h102.614 c4.427,0,8.017-3.589,8.017-8.017S132.16,282.188,127.733,282.188z" /> </g> </g> <g> <g> <path d="M278.771,173.37c-3.13-3.13-8.207-3.13-11.337,0.001l-71.292,71.291l-37.087-37.087c-3.131-3.131-8.207-3.131-11.337,0 c-3.131,3.131-3.131,8.206,0,11.337l42.756,42.756c1.565,1.566,3.617,2.348,5.668,2.348s4.104-0.782,5.668-2.348l76.96-76.96 C281.901,181.576,281.901,176.501,278.771,173.37z" /> </g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> </svg> </div> <div class="detail-box"> <h5> Fast Delivery </h5> <p> variations of passages of Lorem Ipsum available </p> </div> </div> </div> <div class="col-md-4"> <div class="box "> <div class="img-box"> <svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 490.667 490.667" style="enable-background:new 0 0 490.667 490.667;" xml:space="preserve"> <g> <g> <path d="M138.667,192H96c-5.888,0-10.667,4.779-10.667,10.667V288c0,5.888,4.779,10.667,10.667,10.667s10.667-4.779,10.667-10.667 v-74.667h32c5.888,0,10.667-4.779,10.667-10.667S144.555,192,138.667,192z" /> </g> </g> <g> <g> <path d="M117.333,234.667H96c-5.888,0-10.667,4.779-10.667,10.667S90.112,256,96,256h21.333c5.888,0,10.667-4.779,10.667-10.667 S123.221,234.667,117.333,234.667z" /> </g> </g> <g> <g> <path d="M245.333,0C110.059,0,0,110.059,0,245.333s110.059,245.333,245.333,245.333s245.333-110.059,245.333-245.333 S380.608,0,245.333,0z M245.333,469.333c-123.52,0-224-100.48-224-224s100.48-224,224-224s224,100.48,224,224 S368.853,469.333,245.333,469.333z" /> </g> </g> <g> <g> <path d="M386.752,131.989C352.085,88.789,300.544,64,245.333,64s-106.752,24.789-141.419,67.989 c-3.691,4.587-2.965,11.307,1.643,14.997c4.587,3.691,11.307,2.965,14.976-1.643c30.613-38.144,76.096-60.011,124.8-60.011 s94.187,21.867,124.779,60.011c2.112,2.624,5.205,3.989,8.32,3.989c2.368,0,4.715-0.768,6.677-2.347 C389.717,143.296,390.443,136.576,386.752,131.989z" /> </g> </g> <g> <g> <path d="M376.405,354.923c-4.224-4.032-11.008-3.861-15.061,0.405c-30.613,32.235-71.808,50.005-116.011,50.005 s-85.397-17.771-115.989-50.005c-4.032-4.309-10.816-4.437-15.061-0.405c-4.309,4.053-4.459,10.816-0.405,15.083 c34.667,36.544,81.344,56.661,131.456,56.661s96.789-20.117,131.477-56.661C380.864,365.739,380.693,358.976,376.405,354.923z" /> </g> </g> <g> <g> <path d="M206.805,255.723c15.701-2.027,27.861-15.488,27.861-31.723c0-17.643-14.357-32-32-32h-21.333 c-5.888,0-10.667,4.779-10.667,10.667v42.581c0,0.043,0,0.107,0,0.149V288c0,5.888,4.779,10.667,10.667,10.667 S192,293.888,192,288v-16.917l24.448,24.469c2.091,2.069,4.821,3.115,7.552,3.115c2.731,0,5.461-1.045,7.531-3.136 c4.16-4.16,4.16-10.923,0-15.083L206.805,255.723z M192,234.667v-21.333h10.667c5.867,0,10.667,4.779,10.667,10.667 s-4.8,10.667-10.667,10.667H192z" /> </g> </g> <g> <g> <path d="M309.333,277.333h-32v-64h32c5.888,0,10.667-4.779,10.667-10.667S315.221,192,309.333,192h-42.667 c-5.888,0-10.667,4.779-10.667,10.667V288c0,5.888,4.779,10.667,10.667,10.667h42.667c5.888,0,10.667-4.779,10.667-10.667 S315.221,277.333,309.333,277.333z" /> </g> </g> <g> <g> <path d="M288,234.667h-21.333c-5.888,0-10.667,4.779-10.667,10.667S260.779,256,266.667,256H288 c5.888,0,10.667-4.779,10.667-10.667S293.888,234.667,288,234.667z" /> </g> </g> <g> <g> <path d="M394.667,277.333h-32v-64h32c5.888,0,10.667-4.779,10.667-10.667S400.555,192,394.667,192H352 c-5.888,0-10.667,4.779-10.667,10.667V288c0,5.888,4.779,10.667,10.667,10.667h42.667c5.888,0,10.667-4.779,10.667-10.667 S400.555,277.333,394.667,277.333z" /> </g> </g> <g> <g> <path d="M373.333,234.667H352c-5.888,0-10.667,4.779-10.667,10.667S346.112,256,352,256h21.333 c5.888,0,10.667-4.779,10.667-10.667S379.221,234.667,373.333,234.667z" /> </g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> <g> </g> </svg> </div> <div class="detail-box"> <h5> Free Shiping </h5> <p> variations of passages of Lorem Ipsum available </p> </div> </div> </div> <div class="col-md-4"> <div class="box "> <div class="img-box"> <svg id="_30_Premium" height="512" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg" data-name="30_Premium"> <g id="filled"> <path d="m252.92 300h3.08a124.245 124.245 0 1 0 -4.49-.09c.075.009.15.023.226.03.394.039.789.06 1.184.06zm-96.92-124a100 100 0 1 1 100 100 100.113 100.113 0 0 1 -100-100z" /> <path d="m447.445 387.635-80.4-80.4a171.682 171.682 0 0 0 60.955-131.235c0-94.841-77.159-172-172-172s-172 77.159-172 172c0 73.747 46.657 136.794 112 161.2v158.8c-.3 9.289 11.094 15.384 18.656 9.984l41.344-27.562 41.344 27.562c7.574 5.4 18.949-.7 18.656-9.984v-70.109l46.6 46.594c6.395 6.789 18.712 3.025 20.253-6.132l9.74-48.724 48.725-9.742c9.163-1.531 12.904-13.893 6.127-20.252zm-339.445-211.635c0-81.607 66.393-148 148-148s148 66.393 148 148-66.393 148-148 148-148-66.393-148-148zm154.656 278.016a12 12 0 0 0 -13.312 0l-29.344 19.562v-129.378a172.338 172.338 0 0 0 72 0v129.38zm117.381-58.353a12 12 0 0 0 -9.415 9.415l-6.913 34.58-47.709-47.709v-54.749a171.469 171.469 0 0 0 31.467-15.6l67.151 67.152z" /> <path d="m287.62 236.985c8.349 4.694 19.251-3.212 17.367-12.618l-5.841-35.145 25.384-25c7.049-6.5 2.89-19.3-6.634-20.415l-35.23-5.306-15.933-31.867c-4.009-8.713-17.457-8.711-21.466 0l-15.933 31.866-35.23 5.306c-9.526 1.119-13.681 13.911-6.634 20.415l25.384 25-5.841 35.145c-1.879 9.406 9 17.31 17.367 12.618l31.62-16.414zm-53-32.359 2.928-17.615a12 12 0 0 0 -3.417-10.516l-12.721-12.531 17.658-2.66a12 12 0 0 0 8.947-6.5l7.985-15.971 7.985 15.972a12 12 0 0 0 8.947 6.5l17.658 2.66-12.723 12.535a12 12 0 0 0 -3.417 10.516l2.928 17.615-15.849-8.231a12 12 0 0 0 -11.058 0z" /> </g> </svg> </div> <div class="detail-box"> <h5> Best Quality </h5> <p> variations of passages of Lorem Ipsum available </p> </div> </div> </div> </div> </div> </section> <!-- end why section --> <!-- gift section --> <section class="gift_section layout_padding-bottom"> <div class="box "> <div class="container-fluid"> <div class="row"> <div class="col-md-5"> <div class="img_container"> <div class="img-box"> <img src="{% static 'images/gifts.png' %}" alt=""> </div> </div> </div> <div class="col-md-7"> <div class="detail-box"> <div class="heading_container"> <h2> Gifts for your <br> loved ones </h2> </div> <p> Omnis ex nam laudantium odit illum harum, excepturi accusamus at corrupti, velit blanditiis unde perspiciatis, vitae minus culpa? Beatae at aut consequuntur porro adipisci aliquam eaque iste ducimus expedita accusantium? </p> <div class="btn-box"> <a href="#" class="btn1"> Buy Now </a> <a href="#" class="btn2"> See More </a> </div> </div> </div> </div> </div> </div> </section> <!-- end gift section --> <!-- contact section --> <section class="contact_section "> <div class="container px-0"> <div class="heading_container "> <h2 class=""> Contact Us </h2> </div> </div> <div class="container container-bg"> <div class="row"> <div class="col-lg-7 col-md-6 px-0"> <div class="map_container"> <div class="map-responsive"> <iframe src="https://www.google.com/maps/embed/v1/place?key=AIzaSyA0s1a7phLN0iaD6-UE7m4qP-z21pH0eSc&q=Eiffel+Tower+Paris+France" width="600" height="300" frameborder="0" style="border:0; width: 100%; height:100%" allowfullscreen></iframe> </div> </div> </div> <div class="col-md-6 col-lg-5 px-0"> <form action="#"> <div> <input type="text" placeholder="Name" /> </div> <div> <input type="email" placeholder="Email" /> </div> <div> <input type="text" placeholder="Phone" /> </div> <div> <input type="text" class="message-box" placeholder="Message" /> </div> <div class="d-flex "> <button> SEND </button> </div> </form> </div> </div> </div> </section> <!-- end contact section --> <!-- client section --> <section class="client_section layout_padding"> <div class="container"> <div class="heading_container heading_center"> <h2> Testimonial </h2> </div> </div> <div class="container px-0"> <div id="customCarousel2" class="carousel carousel-fade" data-ride="carousel"> <div class="carousel-inner"> <div class="carousel-item active"> <div class="box"> <div class="client_info"> <div class="client_name"> <h5> Morijorch </h5> <h6> Default model text </h6> </div> <i class="fa fa-quote-left" aria-hidden="true"></i> </div> <p> editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Variouseditors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Variouseditors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various </p> </div> </div> <div class="carousel-item"> <div class="box"> <div class="client_info"> <div class="client_name"> <h5> Rochak </h5> <h6> Default model text </h6> </div> <i class="fa fa-quote-left" aria-hidden="true"></i> </div> <p> Variouseditors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Variouseditors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. </p> </div> </div> <div class="carousel-item"> <div class="box"> <div class="client_info"> <div class="client_name"> <h5> Brad Johns </h5> <h6> Default model text </h6> </div> <i class="fa fa-quote-left" aria-hidden="true"></i> </div> <p> Variouseditors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy, editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Variouseditors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various </p> </div> </div> </div> <div class="carousel_btn-box"> <a class="carousel-control-prev" href="#customCarousel2" role="button" data-slide="prev"> <i class="fa fa-angle-left" aria-hidden="true"></i> <span class="sr-only">Previous</span> </a> <a class="carousel-control-next" href="#customCarousel2" role="button" data-slide="next"> <i class="fa fa-angle-right" aria-hidden="true"></i> <span class="sr-only">Next</span> </a> </div> </div> </div> </section> <!-- end client section --> <!-- info section --> <section class="info_section layout_padding2-top"> <div class="social_container"> <div class="social_box"> <a href=""> <i class="fa fa-facebook" aria-hidden="true"></i> </a> <a href=""> <i class="fa fa-twitter" aria-hidden="true"></i> </a> <a href=""> <i class="fa fa-instagram" aria-hidden="true"></i> </a> <a href=""> <i class="fa fa-youtube" aria-hidden="true"></i> </a> </div> </div> <div class="info_container "> <div class="container"> <div class="row"> <div class="col-md-6 col-lg-3"> <h6> ABOUT US </h6> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed doLorem ipsum dolor sit amet, consectetur adipiscing elit, sed doLorem ipsum dolor sit amet, </p> </div> <div class="col-md-6 col-lg-3"> <div class="info_form "> <h5> Newsletter </h5> <form action="#"> <input type="email" placeholder="Enter your email"> <button> Subscribe </button> </form> </div> </div> <div class="col-md-6 col-lg-3"> <h6> NEED HELP </h6> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed doLorem ipsum dolor sit amet, consectetur adipiscing elit, sed doLorem ipsum dolor sit amet, </p> </div> <div class="col-md-6 col-lg-3"> <h6> CONTACT US </h6> <div class="info_link-box"> <a href=""> <i class="fa fa-map-marker" aria-hidden="true"></i> <span> Gb road 123 london Uk </span> </a> <a href=""> <i class="fa fa-phone" aria-hidden="true"></i> <span>+01 12345678901</span> </a> <a href=""> <i class="fa fa-envelope" aria-hidden="true"></i> <span> demo@gmail.com</span> </a> </div> </div> </div> </div> </div> <!-- footer section --> <footer class=" footer_section"> <div class="container"> <p> © <span id="displayYear"></span> All Rights Reserved By <a href="https://html.design/">Free Html Templates</a> </p> </div> </footer> <!-- footer section --> </section> <!-- end info section --> <script src="{% static 'js/jquery-3.4.1.min.js' %}"></script> <script src="{% static 'js/bootstrap.js' %}"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"> </script> <script src="{% static 'js/custom.js' %}"></script> </body> </html> |
11.同步資料並啟動網站
12.打開瀏覽器,查看結果:
14.開啟pythonanywhere的File功能表,上傳Giftos.zip到pythonanywhere。
17.設置static路徑
18.執行結果
沒有留言:
張貼留言