|
@@ -0,0 +1,517 @@
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
+<html lang="en">
|
|
|
|
+<head>
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
+ <title>ArozOS</title>
|
|
|
|
+ <meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
|
|
+ <meta content="Web Desktop, Open Source, Aroz, Go, OS, Raspberry Pi" name="keywords">
|
|
|
|
+ <meta content="The best Web Desktop Online System for the Raspberry Pi" name="description">
|
|
|
|
+ <meta name="author" content="tobychui">
|
|
|
|
+
|
|
|
|
+ <!-- Favicons -->
|
|
|
|
+ <link href="img/favicon.png" rel="icon">
|
|
|
|
+ <link href="img/apple-touch-icon.png" rel="apple-touch-icon">
|
|
|
|
+
|
|
|
|
+ <!-- Google Fonts -->
|
|
|
|
+ <link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
+ <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400&display=swap" rel="stylesheet">
|
|
|
|
+
|
|
|
|
+ <!-- Bootstrap css -->
|
|
|
|
+ <!-- <link rel="stylesheet" href="css/bootstrap.css"> -->
|
|
|
|
+ <link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
+
|
|
|
|
+ <!-- Libraries CSS Files -->
|
|
|
|
+ <link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
|
|
|
|
+ <link href="lib/owlcarousel/assets/owl.theme.default.min.css" rel="stylesheet">
|
|
|
|
+ <link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
|
|
|
|
+ <link href="lib/animate/animate.min.css" rel="stylesheet">
|
|
|
|
+ <link href="lib/modal-video/css/modal-video.min.css" rel="stylesheet">
|
|
|
|
+
|
|
|
|
+ <!-- Main Stylesheet File -->
|
|
|
|
+ <link href="css/style.css" rel="stylesheet">
|
|
|
|
+
|
|
|
|
+ <!-- Additional stuffs for TC support-->
|
|
|
|
+ <link rel="preconnect" href="https://fonts.gstatic.com">
|
|
|
|
+ <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400&display=swap" rel="stylesheet">
|
|
|
|
+
|
|
|
|
+ <!-- =======================================================
|
|
|
|
+ Theme Name: eStartup
|
|
|
|
+ Theme URL: https://bootstrapmade.com/estartup-bootstrap-landing-page-template/
|
|
|
|
+ Author: BootstrapMade.com
|
|
|
|
+ License: https://bootstrapmade.com/license/
|
|
|
|
+ ======================================================= -->
|
|
|
|
+
|
|
|
|
+ <style>
|
|
|
|
+ p,a,div,span,h1,h2,h3,h4,h5,h6{
|
|
|
|
+ font-family: 'Noto Sans SC', sans-serif !important;
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
|
|
+</head>
|
|
|
|
+
|
|
|
|
+<body>
|
|
|
|
+
|
|
|
|
+ <header id="header" class="header header-hide">
|
|
|
|
+ <div class="container">
|
|
|
|
+
|
|
|
|
+ <div id="logo" class="pull-left">
|
|
|
|
+ <h1><a href="" class="scrollto">ArozOS</a></h1>
|
|
|
|
+ <!-- Uncomment below if you prefer to use an image logo -->
|
|
|
|
+ <!-- <a href="#body"><img src="img/logo.png" alt="" title="" /></a>-->
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <nav id="nav-menu-container">
|
|
|
|
+ <ul class="nav-menu">
|
|
|
|
+ <li class="menu-active"><a href="#hero">主页</a></li>
|
|
|
|
+ <li><a href="#about-us">关于</a></li>
|
|
|
|
+ <li><a href="#features">功能</a></li>
|
|
|
|
+ <li><a href="#screenshots">系统截图</a></li>
|
|
|
|
+ <li><a href="#docs">说明文档</a></li>
|
|
|
|
+ <li><a href="#contact">源码</a></li>
|
|
|
|
+ <li><a href="#" onclick="window.location.href='lang.html';">中文(简体)</a></li>
|
|
|
|
+ </ul>
|
|
|
|
+ </nav><!-- #nav-menu-container -->
|
|
|
|
+ </div>
|
|
|
|
+ </header><!-- #header -->
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Hero Section
|
|
|
|
+ ============================-->
|
|
|
|
+ <section id="hero" class="wow fadeIn">
|
|
|
|
+ <div class="hero-container">
|
|
|
|
+ <h1>ArozOS</h1>
|
|
|
|
+ <h2>一个属于你的云端桌面作业平台</h2>
|
|
|
|
+ <img src="img/banner.png" alt="Hero Imgs">
|
|
|
|
+ <a href="#get-started" class="btn-get-started scrollto">了解更多</a>
|
|
|
|
+ <div class="btns">
|
|
|
|
+ <a href="https://github.com/tobychui/arozos"><i class="fa fa-github fa-3x"></i> Github</a>
|
|
|
|
+ <a href="https://github.com/tobychui/arozos/releases"><i class="fa fa-download fa-3x"></i> 下载</a>
|
|
|
|
+ <a href="docs/"><i class="fa fa-book fa-3x"></i> 说明文档</a>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </section><!-- #hero -->
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Get Started Section
|
|
|
|
+ ============================-->
|
|
|
|
+ <section id="get-started" class="padd-section text-center wow fadeInUp">
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="section-title text-center">
|
|
|
|
+
|
|
|
|
+ <h2></h2>
|
|
|
|
+ <p class="separator">为何选用 ArozOS?</p>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="row">
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-4">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+
|
|
|
|
+ <img src="img/svg/cloud.svg" alt="img" class="img-fluid">
|
|
|
|
+ <h4>云端桌面</h4>
|
|
|
|
+ <p>简单又优美的网页桌面界面,让你可以轻鬆完成日常生活上的简单工作</p>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-4">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+
|
|
|
|
+ <img src="img/rpi.png" alt="img" class="img-fluid">
|
|
|
|
+ <h4>为「树莓派」而设计</h4>
|
|
|
|
+ <p>系统适用於 树莓派 等资源有限的单片电脑,也能在一般电脑和伺服器上执行 </p>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-4">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+
|
|
|
|
+ <img src="img/os.png" alt="img" class="img-fluid">
|
|
|
|
+ <h4>开源</h4>
|
|
|
|
+ <p>ArozOS 的部分组件是开源项目,并在 Github 开放免费使用</p>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ About Us Section
|
|
|
|
+ ============================-->
|
|
|
|
+ <section id="about-us" class="about-us padd-section wow fadeInUp">
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="row justify-content-center">
|
|
|
|
+
|
|
|
|
+ <div class="col-md-5 col-lg-3">
|
|
|
|
+ <img src="img/preview-pc.png" alt="About">
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-7 col-lg-5">
|
|
|
|
+ <div class="about-content">
|
|
|
|
+
|
|
|
|
+ <h2><span>ArozOS</span>主机<br> 网页桌面系统 </h2>
|
|
|
|
+ <p>快速让任何安装了瀏览器和连接互联网的电脑变成属於你的个人装置,随时随地存取你在云端上的档案。
|
|
|
|
+ </p>
|
|
|
|
+
|
|
|
|
+ <ul class="list-unstyled">
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>无需要特别的使用者权限</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>支援 Chrome, Firefox 及 Safari 瀏览器</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>可透过网页桌面、FTP 及 WebDAV 存取档案</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>可能是世界上最好的网页档案管理员</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>基於 HTML5 的现代化 WebApps</li>
|
|
|
|
+
|
|
|
|
+ </ul>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <br><br>
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="row justify-content-center">
|
|
|
|
+
|
|
|
|
+ <div class="col-md-5 col-lg-3">
|
|
|
|
+ <img src="img/preview.png" alt="About">
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-7 col-lg-5">
|
|
|
|
+ <div class="about-content">
|
|
|
|
+
|
|
|
|
+ <h2><span>ArozOS</span>手机 <br>网页桌面系统 </h2>
|
|
|
|
+ <p>使用 PWA 技术,让你的桌面也能在手机上开啟,让装置之间传送档案更加方便快捷。
|
|
|
|
+ </p>
|
|
|
|
+
|
|
|
|
+ <ul class="list-unstyled">
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>无需安装任何 App</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>支援 Android 及 iOS 装置</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>支援 Chrome 及 Safari</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>类视窗型作业模式</li>
|
|
|
|
+ <li><i class="fa fa-angle-right"></i>可在多台装置之间进行即时同步</li>
|
|
|
|
+ </ul>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Features Section
|
|
|
|
+ ============================-->
|
|
|
|
+
|
|
|
|
+ <section id="features" class="padd-section text-center wow fadeInUp">
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="section-title text-center">
|
|
|
|
+ <h2>丰富的内置功能</h2>
|
|
|
|
+ <p class="separator">应有尽有的各种 WebApp 功能,让您在网页上拥有桌面般的使用者体验</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="row">
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/icons/work_desk_kirei.png" alt="img" class="img-fluid">
|
|
|
|
+ <h4>简单而洁净</h4>
|
|
|
|
+ <p>仿玻璃和圆角风格的视窗,简单直接的 WebApp 命名方式</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/icons/computer_cloud_storage.png" alt="img" class="img-fluid">
|
|
|
|
+ <h4>支援多媒体</h4>
|
|
|
|
+ <p>内置音乐、图片及音乐播放器,适合用作多媒体串流之用</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/icons/envelop_paper.png" alt="img" class="img-fluid">
|
|
|
|
+ <h4>档案管理员</h4>
|
|
|
|
+ <p>可能是你能在网页桌面环境裡找到的,最好的一个档案管理员</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/svg/design-tool.svg" alt="img" class="img-fluid">
|
|
|
|
+ <h4>简单易用</h4>
|
|
|
|
+ <p>支援在笔记本电脑、手机等上的拖拉操作</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/svg/cloud-computing.svg" alt="img" class="img-fluid">
|
|
|
|
+ <h4>Git 安装</h4>
|
|
|
|
+ <p>开源的 WebApp 模组可以透过内置的 模组安装器,使用 Git Clone 方法下载</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/icons/computer_tethering.png" alt="img" class="img-fluid">
|
|
|
|
+ <h4>快速连接</h4>
|
|
|
|
+ <p>支援 Windows 、Mac 跟 Linux 透过网页界面、FTP 或 WebDAV 连接到 ArozOS 主机</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/os.png" alt="img" class="img-fluid">
|
|
|
|
+ <h4>开源</h4>
|
|
|
|
+ <p>有不合用的地方?自己随便改写吧!</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-6 col-lg-3">
|
|
|
|
+ <div class="feature-block">
|
|
|
|
+ <img src="img/svg/code.svg" alt="img" class="img-fluid">
|
|
|
|
+ <h4>使用 Go 语言开发
|
|
|
|
+ </h4>
|
|
|
|
+ <p>比起其他语言如 PHP,Go 更能榨乾树莓派的处理能力,使系统运行效率更佳</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Screenshots Section
|
|
|
|
+ ============================-->
|
|
|
|
+ <section id="screenshots" class="padd-section text-center wow fadeInUp">
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="section-title text-center">
|
|
|
|
+ <h2>系统截图</h2>
|
|
|
|
+ <p class="separator">简单的看一看 ArozOS 的网页桌面环境</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="owl-carousel owl-theme">
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <div><img class="fullwidthImg" src="img/screen/1.png" alt="img"></div>
|
|
|
|
+ <div><img class="fullwidthImg" src="img/screen/2.png" alt="img"></div>
|
|
|
|
+ <div><img class="fullwidthImg" src="img/screen/3.png" alt="img"></div>
|
|
|
|
+ <div><img class="fullwidthImg" src="img/screen/4.png" alt="img"></div>
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Video Section
|
|
|
|
+ ============================-->
|
|
|
|
+
|
|
|
|
+ <section id="video" class="text-center wow fadeInUp">
|
|
|
|
+ <div class="overlay">
|
|
|
|
+ <div class="container-fluid container-full">
|
|
|
|
+
|
|
|
|
+ <div class="row">
|
|
|
|
+ <a href="#" class="js-modal-btn play-btn" data-video-id="NXmAsQhhlOs"></a>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Testimonials Section
|
|
|
|
+ ============================-->
|
|
|
|
+
|
|
|
|
+ <section id="testimonials" class="padd-section text-center wow fadeInUp">
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="row justify-content-center">
|
|
|
|
+
|
|
|
|
+ <div class="col-md-8">
|
|
|
|
+
|
|
|
|
+ <div class="testimonials-content">
|
|
|
|
+ <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
|
|
|
|
+
|
|
|
|
+ <div class="carousel-inner" role="listbox">
|
|
|
|
+
|
|
|
|
+ <div class="carousel-item active">
|
|
|
|
+ <div class="top-top">
|
|
|
|
+
|
|
|
|
+ <h2>这是一个应该出名的项目 </h2>
|
|
|
|
+ <p>老实说,这是一个现在被低估了的系统,我希望更多人能够看到这套 ArozOS 系统。 </p>
|
|
|
|
+ <h4>CrazyCoder009</span></h4>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="carousel-item ">
|
|
|
|
+ <div class="top-top">
|
|
|
|
+
|
|
|
|
+ <h2>ArozOS 非常的顺畅和美好</h2>
|
|
|
|
+ <p>能完美在 Rpi 4B 上运作。用了好一段时间,系统用起来非常的顺畅和美好,谢谢 TC(作者)!</p>
|
|
|
|
+ <h4>jimting</span></h4>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="carousel-item ">
|
|
|
|
+ <div class="top-top">
|
|
|
|
+
|
|
|
|
+ <h2>终於有属於自己的 NAS 了</h2>
|
|
|
|
+ <p>这还是我人生中第一次用 NAS,毕竟买一台 NAS 太贵了 </p>
|
|
|
|
+ <h4>Wei Vi</span></h4>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="btm-btm">
|
|
|
|
+
|
|
|
|
+ <ul class="list-unstyled carousel-indicators">
|
|
|
|
+ <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
|
|
|
|
+ <li data-target="#carousel-example-generic" data-slide-to="1"></li>
|
|
|
|
+ <li data-target="#carousel-example-generic" data-slide-to="2"></li>
|
|
|
|
+ </ul>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Blog Section
|
|
|
|
+ ============================-->
|
|
|
|
+ <section id="blog" class="padd-section wow fadeInUp">
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="section-title text-center">
|
|
|
|
+
|
|
|
|
+ <h2>有点想试试看了?</h2>
|
|
|
|
+ <p class="separator">来看看 <a href="https://github.com/tobychui/arozos/blob/master/README.md">Github 上的 README</a> 档案吧</p>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Newsletter Section
|
|
|
|
+ ============================-->
|
|
|
|
+ <section id="docs" class="newsletter text-center wow fadeInUp">
|
|
|
|
+ <div class="overlay padd-section">
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="section-title text-center">
|
|
|
|
+ <h2>说明文档</h2>
|
|
|
|
+ <p>想开发你自己的 ArozOS 功能? 你可以来看看这个系统的设计文档</p>
|
|
|
|
+ <a href="docs/" class="glass btn-get-started scrollto" target="_blank">打开看看</a>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </section>
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Contact Section
|
|
|
|
+ ============================-->
|
|
|
|
+ <section id="contact" class="padd-section wow fadeInUp">
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="section-title text-center">
|
|
|
|
+ <h2>查看源码</h2>
|
|
|
|
+ <p class="separator">你对源码有兴趣? 下面的传送门会带你找到本系统的源码 <br> 如果你喜欢这个项目,请给我一个 ⭐星星⭐</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="row justify-content-center">
|
|
|
|
+
|
|
|
|
+ <div class="col-lg-3 col-md-4">
|
|
|
|
+
|
|
|
|
+ <div class="info">
|
|
|
|
+ <div>
|
|
|
|
+ <i class="fa fa-github"></i>
|
|
|
|
+ <p><a href="https://github.com/tobychui/arozos">https://github.com/tobychui/arozos</a></p>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="email">
|
|
|
|
+ <i class="fa fa-envelope"></i>
|
|
|
|
+ <p><a href="mailto:imuslab@gmail.com">imuslab@gmail.com</a></p>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!--
|
|
|
|
+ <div class="social-links">
|
|
|
|
+ <a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
|
|
|
|
+ <a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
|
|
|
|
+ <a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
|
|
|
|
+ <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a>
|
|
|
|
+ <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
|
|
|
|
+ </div>
|
|
|
|
+-->
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </section><!-- #contact -->
|
|
|
|
+
|
|
|
|
+ <!--==========================
|
|
|
|
+ Footer
|
|
|
|
+ ============================-->
|
|
|
|
+ <footer class="footer">
|
|
|
|
+ <div class="copyrights">
|
|
|
|
+ <div class="container">
|
|
|
|
+ <div class="credits">
|
|
|
|
+ <!--
|
|
|
|
+ All the links in the footer should remain intact.
|
|
|
|
+ You can delete the links only if you purchased the pro version.
|
|
|
|
+ Licensing information: https://bootstrapmade.com/license/
|
|
|
|
+ Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=eStartup
|
|
|
|
+ -->
|
|
|
|
+ Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </footer>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <a href="#" class="back-to-top"><i class="fa fa-chevron-up"></i></a>
|
|
|
|
+
|
|
|
|
+ <!-- JavaScript Libraries -->
|
|
|
|
+ <script src="lib/jquery/jquery.min.js"></script>
|
|
|
|
+ <script src="lib/jquery/jquery-migrate.min.js"></script>
|
|
|
|
+ <script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
|
|
+ <script src="lib/superfish/hoverIntent.js"></script>
|
|
|
|
+ <script src="lib/superfish/superfish.min.js"></script>
|
|
|
|
+ <script src="lib/easing/easing.min.js"></script>
|
|
|
|
+ <script src="lib/modal-video/js/modal-video.js"></script>
|
|
|
|
+ <script src="lib/owlcarousel/owl.carousel.min.js"></script>
|
|
|
|
+ <script src="lib/wow/wow.min.js"></script>
|
|
|
|
+ <!-- Contact Form JavaScript File -->
|
|
|
|
+ <script src="contactform/contactform.js"></script>
|
|
|
|
+
|
|
|
|
+ <!-- Template Main Javascript File -->
|
|
|
|
+ <script src="js/main.js"></script>
|
|
|
|
+
|
|
|
|
+</body>
|
|
|
|
+</html>
|