| 123456789101112131415161718192021222324252627282930313233 |
- <div class="ui segment container home-main prompt">
- <h3 class="ui center aligned header">
- {{if .PageIsUserProfile}}
- Create your own {{AppName}} profile
- {{end}}
- {{if .PageIsOrgHome}}
- Grow your team on {{AppName}}
- {{end}}
- {{if or .PageIsRepoHome .PageIsRepoWiki}}
- Join {{AppName}} today
- {{end}}
- </h3>
- <h5 class="ui center aligned header home-desc">
- {{if .PageIsUserProfile}}
- Sign up for your own profile on {{AppName}}, the best place to host code, manage projects,
- and build software alongside with tons of developers.
- {{end}}
- {{if .PageIsOrgHome}}
- {{AppName}} is home for developers working together. Join them to grow your own development
- teams, manage permissions, and collaborate on projects.
- {{end}}
- {{if or .PageIsRepoHome .PageIsRepoWiki}}
- Gitote is home for developers working together to host and review code, manage projects,
- and build software together.
- {{end}}
- </h5>
- <div class="ui center aligned header">
- <a class="ui green button" href="{{AppURL}}user/sign_up">
- Sign up
- </a>
- </div>
- </div>
|