mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-02-13 02:42:45 +00:00
129 lines
3.5 KiB
HTML
129 lines
3.5 KiB
HTML
<div class="container py-4">
|
|
<h2>Status of <strong ng-bind="repoId"></strong></h2>
|
|
|
|
<section class="py-4">
|
|
<h2>Progress</h2>
|
|
|
|
<p>
|
|
The current status of your repository. The repository will take few
|
|
minutes to get ready depending on the size of the repository. Visit the
|
|
<a href="/faq">FAQ</a> for more information.
|
|
</p>
|
|
|
|
<div class="progress" style="height: 25px">
|
|
<div
|
|
class="progress-bar"
|
|
role="progressbar"
|
|
style="width: {{progress}}%;"
|
|
aria-valuenow="{{progress}}"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100"
|
|
>
|
|
<span>
|
|
{{repo.status | title}}
|
|
<span ng-if="repo.statusMessage"
|
|
>: {{repo.statusMessage | title}}</span
|
|
>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<p>
|
|
Your repository will be available at
|
|
<a href="/r/{{repoId}}/" target="__self">/r/{{repoId}}/</a>.
|
|
</p>
|
|
<p ng-if="repo.options.page">
|
|
Your GitHub Page will be available at
|
|
<a href="/w/{{repoId}}/" target="__self">/w/{{repoId}}/</a>.
|
|
</p>
|
|
|
|
<p class="text-center">
|
|
<a
|
|
class="btn btn-primary"
|
|
href="/r/{{repoId}}/"
|
|
target="__self"
|
|
ng-if="repo.status == 'ready'"
|
|
>Go to the anonymized repository</a
|
|
>
|
|
<a
|
|
class="btn"
|
|
href="/w/{{repoId}}/"
|
|
target="__self"
|
|
ng-if="repo.options.page && repo.status == 'ready'"
|
|
>Go to the anonymized Github page</a
|
|
>
|
|
</p>
|
|
</section>
|
|
|
|
<hr />
|
|
|
|
<section class="py-4">
|
|
<h2>Support the project</h2>
|
|
|
|
<div class="row text-center">
|
|
<div class="col-lg-4">
|
|
<i class="rounded-circle fa fa-edit"></i>
|
|
|
|
<h2>Contribute</h2>
|
|
<p>
|
|
Collaborate to the Anonymous GitHub by implementing new features and
|
|
fixing bugs. Contribution likes supporting new file format or
|
|
improving the deployment are more than welcome.
|
|
</p>
|
|
<p>
|
|
<a
|
|
class="btn btn-secondary"
|
|
href="https://github.com/tdurieux/anonymous_github/"
|
|
target="__self"
|
|
>Go to GitHub »</a
|
|
>
|
|
</p>
|
|
</div>
|
|
<!-- /.col-lg-4 -->
|
|
<div class="col-lg-4">
|
|
<i class="rounded-circle fa fa-comments"></i>
|
|
|
|
<h2>Feedback</h2>
|
|
<p>
|
|
Feedback is also really valuable for the project. It helps to project
|
|
to identify bugs, missing feature and define priorities for the
|
|
project.
|
|
</p>
|
|
<p>
|
|
<a
|
|
class="btn btn-secondary"
|
|
href="https://github.com/tdurieux/anonymous_github/issues/new"
|
|
target="__self"
|
|
>Create an issue »</a
|
|
>
|
|
</p>
|
|
</div>
|
|
<!-- /.col-lg-4 -->
|
|
<div class="col-lg-4">
|
|
<i class="rounded-circle fa fa-dollar-sign"></i>
|
|
|
|
<h2>Finance</h2>
|
|
<p>
|
|
You can also help the project by supporting financially the project.
|
|
The server costs around 25$ per month. Any help to support the cost
|
|
would be gladly appreciated.
|
|
</p>
|
|
<p>
|
|
<a
|
|
class="btn btn-secondary"
|
|
href="https://github.com/sponsors/tdurieux/"
|
|
target="__self"
|
|
>GitHub Sponsor »</a
|
|
>
|
|
<a
|
|
class="btn btn-secondary"
|
|
href="https://ko-fi.com/tdurieux"
|
|
target="__self"
|
|
>Ko-fi »</a
|
|
>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|