mirror of
https://github.com/actix/actix-website
synced 2024-11-27 10:02:57 +01:00
update site
This commit is contained in:
parent
aafceb93b8
commit
5a88c8a83d
2
LICENSE
2
LICENSE
@ -186,7 +186,7 @@
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2017-NOW Nikolay Kim
|
||||
Copyright 2017-NOW Actix Organization and Contributors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
@ -1,3 +0,0 @@
|
||||
<div >
|
||||
<p>Made ❤️ by the <a href="https://cobalt-org.github.io/">Cobalt</a> with the <a href="https://github.com/actix/actix-website">Actix</a> theme</p>
|
||||
</div>
|
@ -1,14 +1,14 @@
|
||||
<div id="mnav">
|
||||
<div id="lnav">
|
||||
<div id="mnav">
|
||||
<div id="lnav">
|
||||
<div id="line"></div>
|
||||
<h1><a href="/"><img src="/public/imgs/ACTIX.png"/></a><a id="home" href="/">Actix</a></h1>
|
||||
<label ><a href="#" id="menu">menu</a></label>
|
||||
<h1><a href="/"><img src="/public/imgs/ACTIX.png"/></a><a id="home" href="/">Actix</a></h1>
|
||||
<label ><a href="#" id="menu">menu</a></label>
|
||||
</div>
|
||||
<div id="rnav">
|
||||
<li> <a href="https://github.com/actix/actix-web" title="GitHub">github</a></li>
|
||||
<li> <a href="https://actix.github.io/actix-web/guide/" title="Huide">guide</a></li>
|
||||
<li> <a href="https://actix.github.io/actix-web/actix_web/" title="api">api</a></li>
|
||||
<li> <a href="https://gitter.im/actix/actix" title="chat">gitter chat</a></li>
|
||||
<li> <a href="https://crates.io/crates/actix-web" title="crates">crates.io</a></li>
|
||||
</div>
|
||||
<div id="rnav">
|
||||
<li> <a href="/tutorials.html" title="tutorials">Tutorials</a></li>
|
||||
<li> <a href="/docs" title="docs">Docs</a></li>
|
||||
<li> <a href="/blog" title="blog">Blog</a></li>
|
||||
<li> <a href="/community.html" title="community">Community</a></li>
|
||||
<li> <a href="/more.html" title="github">More</a></li>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
50
index.liquid
50
index.liquid
@ -1,4 +1,4 @@
|
||||
title: Actix-web framework
|
||||
title: Actix web
|
||||
layout: default.liquid
|
||||
permalink: /index.html
|
||||
---
|
||||
@ -6,54 +6,30 @@ permalink: /index.html
|
||||
<section>
|
||||
<div>
|
||||
<div id="top">
|
||||
<h1>Actix-web framework</h1>
|
||||
<p>Actix-web is a fast, down-to-earth, open source rust web framework.</p>
|
||||
<div>
|
||||
<button><a href="/tutorials.html" >Start</a></button>
|
||||
<button><a href="/docs" >Learn</a></button>
|
||||
</div>
|
||||
<h1>Actix web</h1>
|
||||
<p>Actix web is a simple, pragmatic and extremely fast web framework for Rust.</p>
|
||||
</div>
|
||||
<div id="Features">
|
||||
<div id="feature" class="columns three">
|
||||
<div id="feature" class="columns four">
|
||||
<article>
|
||||
<h3>Type Safe</h3>
|
||||
<p>The words is comming.</p>
|
||||
<p>Forget about stringly typed objects,
|
||||
from request to response, everything has types.</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Stability</h3>
|
||||
<p>The words is comming.</p>
|
||||
<h3>Feature rich</h3>
|
||||
<p>Actix provides a lot of features out of box.
|
||||
WebSockets, Http/2, pipelining etc.</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Extensible</h3>
|
||||
<p>The words is comming.</p>
|
||||
</article>
|
||||
</div>
|
||||
<div id="feature" class="columns three">
|
||||
<article>
|
||||
<h3>Easy To Use</h3>
|
||||
<p>The words is comming.</p>
|
||||
<p>Easily create your own libraries that any Actix application can use.</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Blazingly Fast</h3>
|
||||
<p>The words is comming.</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Async Everything</h3>
|
||||
<p>The words is comming.</p>
|
||||
</article>
|
||||
</div>
|
||||
<div id="feature" class="columns three">
|
||||
<article>
|
||||
<h3>WebSockets</h3>
|
||||
<p>The words is comming.</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>Streaming and pipelining</h3>
|
||||
<p>The words is comming.</p>
|
||||
</article>
|
||||
<article>
|
||||
<h3>HTTP/1.x and HTTP/2.0</h3>
|
||||
<p>The words is comming.</p>
|
||||
<p>Actix is blazingly fast.
|
||||
<a href="https://www.techempower.com/benchmarks/#section=data-r15&hw=ph&test=plaintext">Check yourself</a>.
|
||||
</p>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -317,12 +317,12 @@ footer p {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.columns.three > article {
|
||||
flex: 0 1 33%;
|
||||
.columns.four > article {
|
||||
flex: 0 1 25%;
|
||||
margin-right: 1.5%;
|
||||
}
|
||||
|
||||
.columns.three > article:last-child {
|
||||
.columns.four > article:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 13 KiB |
Loading…
Reference in New Issue
Block a user