this repo has no description
1{{ define "title" }}{{ .RepoInfo.FullName }}{{ end }}
2
3{{ define "repoContent" }}
4 <main>
5 <p class="text-center pt-5 text-gray-400">
6 This is an empty repository. Push some commits here.
7 </p>
8 </main>
9{{ end }}
10
11{{ define "repoAfter" }}
12 <section class="mt-4 p-6 rounded bg-white w-full mx-auto overflow-auto">
13 <strong>push</strong>
14 <pre>
15 git remote add origin git@tangled.sh:{{ .RepoInfo.OwnerHandle }}/{{ .RepoInfo.Name }} </pre
16 >
17 <strong>clone</strong>
18 <pre>
19 git clone https://tangled.sh/{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }}
20 git clone git@tangled.sh:{{ .RepoInfo.OwnerHandle }}/{{ .RepoInfo.Name }}
21 </pre
22 >
23 </section>
24{{ end }}