mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-19 02:19:31 +08:00
146 lines
5.3 KiB
HTML
146 lines
5.3 KiB
HTML
<!--
|
||
Copyright (c) 2016-2023 Martin Donath <martin.donath@squidfunk.com>
|
||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
of this software and associated documentation files (the "Software"), to
|
||
deal in the Software without restriction, including without limitation the
|
||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||
sell copies of the Software, and to permit persons to whom the Software is
|
||
furnished to do so, subject to the following conditions:
|
||
|
||
The above copyright notice and this permission notice shall be included in
|
||
all copies or substantial portions of the Software.
|
||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||
IN THE SOFTWARE.
|
||
-->
|
||
|
||
{% extends "main.zh.html" %}
|
||
|
||
<!-- Render hero under tabs -->
|
||
{% block tabs %}
|
||
{{ super() }}
|
||
|
||
<!-- Additional styles for landing page -->
|
||
<style>
|
||
|
||
/* Application header should be static for the landing page */
|
||
.md-header {
|
||
position: initial;
|
||
}
|
||
|
||
/* Remove spacing, as we cannot hide it completely */
|
||
.md-main__inner {
|
||
margin: 0;
|
||
}
|
||
|
||
/* Hide main content for now */
|
||
.md-content {
|
||
display: none;
|
||
}
|
||
|
||
/* Hide table of contents */
|
||
@media screen and (min-width: 60em) {
|
||
.md-sidebar--secondary {
|
||
display: none;
|
||
}
|
||
}
|
||
|
||
/* Hide navigation */
|
||
@media screen and (min-width: 76.25em) {
|
||
.md-sidebar--primary {
|
||
display: none;
|
||
}
|
||
}
|
||
</style>
|
||
|
||
<!-- Hero for landing page -->
|
||
<section class="mdx-container">
|
||
<div class="md-grid md-typeset">
|
||
<div class="mdx-hero">
|
||
|
||
<!-- Hero content -->
|
||
<div class="mdx-hero__content">
|
||
<br/>
|
||
<br/>
|
||
<div style="text-align: center">
|
||
这是 Wails v3 Alpha 网站。
|
||
|
||
随着 alpha 和 beta 版本的推进,本站将会有所更新。<br/><br/>
|
||
|
||
<div class="admonition warning">
|
||
<p class="admonition-title">警告</p>
|
||
<h3>v3 alpha版本主要用于测试和贡献者。它还不适用于其他任何容量。请预料可能会出现故障,可能会有变化,文档可能会有错误。<br/><br/>
|
||
</h3>
|
||
</div>
|
||
|
||
<h2>状态</h2>
|
||
<br/>
|
||
<table border="1">
|
||
<tr>
|
||
<th>操作系统</th>
|
||
<th>状态</th>
|
||
</tr>
|
||
<tr>
|
||
<td>Windows</td>
|
||
<td>所有示例都可以运行</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Mac</td>
|
||
<td>大多数示例可以运行</td>
|
||
</tr>
|
||
<tr>
|
||
<td>Linux</td>
|
||
<td>一些示例可以运行</td>
|
||
</tr>
|
||
</table>
|
||
<br/><br/>
|
||
|
||
<div style="width: 50%; margin: 0 auto; text-align: justify; padding-bottom: 75px;">
|
||
<h2>常见问题</h2>
|
||
<h3>alpha版本的目的是什么?</h3>
|
||
alpha版本的目的是获得有关新 API 的反馈,并让人们尝试使用它。
|
||
我们想确保 API 易于使用,并且可以使用它构建应用程序。
|
||
<br/><br/>
|
||
<h3>如何提供反馈?</h3>
|
||
请阅读 <a href="/getting-started/feedback/">此页面</a>以获取有关如何提供反馈的详细信息。
|
||
</div>
|
||
<h3>有路线图吗?</h3>
|
||
是的,你可以在 <a href="/roadmap/">这里</a> 找到它。
|
||
|
||
请随时提出针对此网站的PR。每一个PR都会帮助我们更接近发布。<br/><br/>
|
||
感谢您与我们共度此旅程。<br/><br/>
|
||
<br/>
|
||
<a
|
||
href="{{ page.next_page.url | url }}"
|
||
title="{{ page.next_page.title | e }}"
|
||
class="md-button md-button--primary"
|
||
>
|
||
开始
|
||
</a>
|
||
</div>
|
||
<!-- <a-->
|
||
<!-- href="{{ 'introduction' | url }}"-->
|
||
<!-- title="Material for MkDocs Insiders"-->
|
||
<!-- class="md-button"-->
|
||
<!-- >-->
|
||
<!-- 了解更多-->
|
||
<!-- </a>-->
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
{% endblock %}
|
||
|
||
<!-- Content -->
|
||
{% block content %}{% endblock %}
|
||
|
||
<!-- Application footer -->
|
||
{% block footer %}{% endblock %}
|