gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

index.tmpl (3190B)


      1 {{- /*
      2 // GoToSocial
      3 // Copyright (C) GoToSocial Authors admin@gotosocial.org
      4 // SPDX-License-Identifier: AGPL-3.0-or-later
      5 //
      6 // This program is free software: you can redistribute it and/or modify
      7 // it under the terms of the GNU Affero General Public License as published by
      8 // the Free Software Foundation, either version 3 of the License, or
      9 // (at your option) any later version.
     10 //
     11 // This program is distributed in the hope that it will be useful,
     12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14 // GNU Affero General Public License for more details.
     15 //
     16 // You should have received a copy of the GNU Affero General Public License
     17 // along with this program.  If not, see <http://www.gnu.org/licenses/>.
     18 */ -}}
     19 
     20 {{ template "header.tmpl" .}}
     21 <section class="excerpt-top">
     22 	home to <span class="count">{{.instance.Stats.user_count}}</span> users
     23 		who posted <span class="count">{{.instance.Stats.status_count}}</span> statuses,
     24 		federating with  <span class="count">{{.instance.Stats.domain_count}}</span> other instances.
     25 </section>
     26 <main class="lightgray">
     27 	<section>
     28 		<div className="short-description">
     29 			{{.instance.ShortDescription |noescape}}
     30 		</div>
     31 	</section>
     32 	<section class="apps">
     33 		<p>
     34 			GoToSocial does not provide its own webclient, but implements the Mastodon client API.
     35 			You can use this server through a variety of other clients:
     36 		</p>
     37 		<div class="applist">
     38 			<div class="entry">
     39 				<svg role="img" aria-labelledby="semaphoreTitle semaphoreDesc" class="logo redraw" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 146 120">
     40 					<title id="semaphoreTitle">The Semaphore logo</title>
     41 					<desc id="semaphoreDesc">A waving flag</desc>
     42 					<path d="M68.13 0C53.94 0 42.81 20 13.9 27.1l-2.23-5.29a6.5 6.5 0 0 0-5.17-10.4 6.5 6.5 0 0 0-.81 12.95L46.2 120l5.99-2.5-14.42-33.33c22.8-6.86 32.51-22.16 49.83-20.58 9.9.9 4.87 19.56 8.11 17.93 16.22-8.15 32.44-11.41 50.29-11.41-7.96-9.78-17.38-20.55-22.71-31.74L120.8 32c-2.32-7.33-2.56-14.75.87-22.22-9.74-3.26-21.1 0-32.45 4.9C82.2 9.77 79.5 0 68.13 0zM15.26 30.42c8.95 6.63 13.63 13.86 16.07 20.94l1.62 6.32c1.24 6.58 1.07 12.8 1.27 18.03z"></path>
     43 				</svg>
     44 				<div>
     45 					<h2>Semaphore</h2>
     46 					<p>Semaphore is a web client designed for speed and simplicity.</p>
     47 					<a href="https://semaphore.social/" target="_blank" rel="noopener">Use Semaphore</a>
     48 				</div>
     49 			</div>
     50 			<div class="entry">
     51 				<img class="logo" src="/assets/tusky.svg" alt="The Tusky mascot, a cartoon elephant tooting happily"/>
     52 				<div>
     53 					<h2>Tusky</h2>
     54 					<p>Tusky is a lightweight mobile client for Android.</p>
     55 					<a href="https://tusky.app" target="_blank" rel="noopener">Get Tusky</a>
     56 				</div>
     57 			</div>
     58 			<div class="entry">
     59 				<img class="logo" src="/assets/mastodon.svg" alt="The Mastodon logo, the character M in a speech bubble">
     60 				<div>
     61 					<h2>More clients</h2>
     62 					<p>Or try one of the clients listed on the official Mastodon page.</p>
     63 					<a href="https://joinmastodon.org/apps" target="_blank" rel="noopener">Get Mastodon apps</a>
     64 				</div>
     65 			</div>
     66 		</div>
     67 	</section>
     68 </main>
     69 {{ template "footer.tmpl" .}}