mirror of
https://github.com/gin-gonic/gin.git
synced 2025-10-14 04:08:15 +08:00
Adds icons
This commit is contained in:
parent
aae3a8eafd
commit
c7174a366e
44
index.html
44
index.html
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<!-- This site was created in Webflow. http://www.webflow.com-->
|
||||
<!-- Last Published: Mon Jun 30 2014 02:10:44 GMT+0000 (UTC) -->
|
||||
<!-- Last Published: Mon Jun 30 2014 16:43:47 GMT+0000 (UTC) -->
|
||||
<html data-wf-site="539b89a7a7990e780bfd7c67">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
@ -21,6 +21,7 @@
|
||||
<script type="text/javascript" src="js/modernizr.js"></script>
|
||||
<link rel="shortcut icon" type="image/x-icon" href="https://y7v4p6k4.ssl.hwcdn.net/placeholder/favicon.ico">
|
||||
<link rel="apple-touch-icon" href="images/webclip-gallio.png">
|
||||
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="section hero">
|
||||
@ -88,47 +89,72 @@
|
||||
<h2 class="section-title">Full Featured</h2>
|
||||
<div class="w-row">
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">I</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"></div>
|
||||
<div class="w-embed"><i class="fa fa-tachometer"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Fast</h3>
|
||||
<p>Radix tree based routing, small memory foot print. No reflection. Predictable API performance. </p>
|
||||
</div>
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">II</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"><i class="fa fa-bars"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Middleware support</h3>
|
||||
<p>A incoming HTTP request can by handled by a chain of middlewares and the final action.
|
||||
<br>For example: Logger, Authorization, GZIP and finally post a message in the DB.</p>
|
||||
</div>
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">III</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"><i class="fa fa-life-ring"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Crash-free</h3>
|
||||
<p>Gin can catch a panic occurred during a HTTP request and recover it. This way, your server will be always available. It’s also possible to report this panic to Sentry for example!</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-row">
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">IV</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"><i class="fa fa-check-circle"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>JSON validation</h3>
|
||||
<p>Gin can parse and validate the JSON of a request, checking for example the existence of required values.</p>
|
||||
</div>
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">V</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"><i class="fa fa-users"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Routes grouping</h3>
|
||||
<p>Organize your routes better. Authorization required vs non required, different API versions... In addition, the groups can be nested unlimitedly without degrading performance.</p>
|
||||
</div>
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">VI</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"><i class="fa fa-briefcase"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Error management</h3>
|
||||
<p>Gin provides a convenient way to collect all the errors occurred during a HTTP request. Eventually, a middleware can write them to a log file, to a database and send them through the network.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-row">
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">VII</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"><i class="fa fa-picture-o"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Rendering built-in</h3>
|
||||
<p>Gin provides a easy to use API for JSON, XML and HTML rendering.</p>
|
||||
</div>
|
||||
<div class="w-col w-col-4 w-col-small-4">
|
||||
<div class="icons">VIII</div>
|
||||
<div class="icons">
|
||||
<div class="w-embed"><i class="fa fa-code"></i>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Extendable</h3>
|
||||
<p>Creating a new middleware is so easy, just check out the sample codes.</p>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user