-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
128 lines (107 loc) · 5.26 KB
/
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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149477072-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-149477072-1');
</script>
<script data-ad-client="ca-pub-6632840740178335" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A low cost, open source, online and extensible homebrew automation on top of ESP8266 microchip." />
<meta name="keywords" content="brew, automation, craftbeer, beer, homebrew" />
<meta name="author" content="Bruno Leitão" />
<!-- Site Title -->
<title>BrewUNO</title>
<!-- Site favicon -->
<link rel="shortcut icon" href="images/favicon.ico">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<!-- MFP Css -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- Material Icon -->
<link rel="stylesheet" type="text/css" href="css/materialdesignicons.min.css" />
<!-- Pe7 Icon -->
<link rel="stylesheet" type="text/css" href="css/pe-icon-7.css">
<!-- Animate Css -->
<link rel="stylesheet" type="text/css" href="css/aos.css">
<!-- Owl Slider -->
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/owl.theme.css" />
<link rel="stylesheet" href="css/owl.transitions.css" />
<!-- Custom Css -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/apoiese.css" />
</head>
<body>
<!--Navbar Start-->
<nav class="navbar navbar-expand-lg fixed-top custom-nav sticky">
<div class="container">
<!-- LOGO -->
<a class="logo navbar-brand" href="index.html">
<img src="images/logo.png" alt="" class="img-fluid logo-light">
<img src="images/logo-dark.png" alt="" class="img-fluid logo-dark">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<i class="mdi mdi-menu"></i>
</button>
<div>
<a href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=492TNNF63C9WG&source=url' target='_blank'><img src='images/donate.svg'/></a>
<a href='https://apoia.se/brewuno' target='_blank' class='apoia-link'>Donate with <img class='apoia-img' src='images/apoiseicon.png'/></a>
</div>
</div>
</nav>
<!-- Navbar End -->
<!--Start Home-->
<section class="home-bg-img" id="home">
<div class="bg-overlay"></div>
<div class="home-table">
<div class="home-table-center">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-12">
<div class="text-white text-center">
<h1 class="header_title mx-auto">What's BrewUNO</h1>
<p class="header_subtitle mx-auto pt-4 mb-0 pb-2 text-white">High precision and accuracy, open source, online, extensible and low cost homebrew automation on top of ESP8266 microchip.</p>
<div class="header_btn">
<a href="https://github.com/uncodead/BrewUNO" target="blank" class="btn btn-custom mt-4 mr-3">Getting Started</a>
</div>
<div>
<img src="images/home-desk-brewuno.png" alt="" class="img-fluid mx-auto home-desk d-block">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End Home-->
<!-- Back To Top -->
<a href="index.html#" class="back_top"> <i class="pe-7s-angle-up"> </i> </a>
<!-- Javascript -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/scrollspy.min.js"></script>
<!-- Owl Js -->
<script src="js/owl.carousel.min.js"></script>
<!-- Aos Js -->
<script src="js/aos.js"></script>
<!-- MFP JS -->
<script src="js/jquery.magnific-popup.min.js"></script>
<!-- Custom Js -->
<script src="js/custom.js"></script>
<script>
AOS.init({
easing: 'ease-in-out-sine',
duration: 1000
});
</script>
</body>
</html>