-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (115 loc) · 5.74 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
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content="Hugo 0.52" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Totoval - An out-of-the-box artisan API web-framework written in go.</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<style>
#title {
font-size: 3em;
}
#footer-container {
max-width: none;
}
#footer-container > ul > li > a svg {
margin-right: 4px;
}
</style>
<body>
<section class="hero is-fullheight" style="background-color: #eeeeee;">
<div class="hero-head">
<header class="navbar">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item">
<img src="/images/logo.png" alt="Logo">
</a>
<span class="navbar-burger burger" data-target="navbarMenuHeroC">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenuHeroC" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item is-active" href="//totoval.com">
Home
</a>
<a class="navbar-item" href="//totoval.com/docs/introduction/introduction/">
Documentation
</a>
<a class="navbar-item" href="//github.com/totoval/mindav">
MinDAV
</a>
<a class="navbar-item" href="//github.com/totoval/crypto-alert">
Crypto Alert
</a>
<span class="navbar-item">
<a class="button is-success is-inverted"
href="https://github.com/totoval/totoval/archive/master.zip">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Download</span>
</a>
</span>
</div>
</div>
</div>
</header>
</div>
<div class="hero-body"
style="background-image: url('/images/background-1200x400.png');background-size: 100%;background-repeat: no-repeat;background-position:bottom;">
<div class="container has-text-centered">
<h1 id="title" class="title">
Totoval
</h1>
<h2 class="subtitle">
An out-of-the-box artisan API web-framework written in go.
</h2>
<a class="github-button" href="https://github.com/totoval/totoval" data-show-count="true"
aria-label="Star totoval/totoval on GitHub">Star</a>
<a class="github-button" href="https://github.com/totoval/totoval/fork" data-show-count="true"
aria-label="Fork totoval/totoval on GitHub">Fork</a>
<br>
<a href="https://github.com/totoval/totoval"><img alt="GitHub release"
src="https://img.shields.io/github/release/totoval/totoval.svg"/></a>
<a href="https://github.com/totoval/totoval"><img alt="GitHub last commit"
src="https://img.shields.io/github/last-commit/totoval/totoval.svg"/></a>
<a href="https://github.com/totoval/totoval"><img alt="Go Report Card"
src="https://goreportcard.com/badge/github.com/totoval/totoval"/></a>
<a href="https://github.com/totoval/totoval"><img alt="GitHub top language"
src="https://img.shields.io/github/languages/top/totoval/totoval.svg"/></a>
<a href="https://github.com/totoval/totoval"><img alt="Inspired by Laravel"
src="https://img.shields.io/badge/Inspired%20by-Laravel-red.svg"/></a>
<a href="https://github.com/totoval/totoval"><img alt="GitHub"
src="https://img.shields.io/github/license/totoval/totoval.svg"/></a>
</div>
</div>
<div class="hero-foot">
<nav class="tabs is-boxed is-fullwidth">
<div id="footer-container" class="container">
<ul>
<li><a><i class="fas fa-random"></i>Router</a></li>
<li><a><i class="fas fa-align-center"></i>Middleware</a></li>
<li><a><i class="fas fa-network-wired"></i>Websocket</a></li>
<li><a><i class="fas fa-database"></i>Database Eloquent</a></li>
<li><a><i class="fas fa-server"></i>Cache</a></li>
<li><a><i class="fas fa-briefcase"></i>Queue Job</a></li>
<li><a><i class="fas fa-bell"></i>Event Listener</a></li>
<li><a><i class="fas fa-tasks"></i>Task Scheduling</a></li>
<li><a><i class="fas fa-terminal"></i>Custom Command Line</a></li>
<li><a><i class="fas fa-language"></i>Language Pack</a></li>
<li><a><i class="fas fa-user-tag"></i>RBAC</a></li>
</ul>
</div>
</nav>
</div>
</section>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>