mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 09:31:53 +01:00 
			
		
		
		
	Addition to https://github.com/go-gitea/gitea/pull/24426#discussion_r1181261215 I updated all existing translations too because otherwise they would show something like > For more information on the Container registry, see [the documentation](#).%!(EXTRA string=https://docs.gitea.io/en-us/packages/container/) --------- Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			20 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{if eq .PackageDescriptor.Package.Type "pub"}}
 | |
| 	<h4 class="ui top attached header">{{.locale.Tr "packages.installation"}}</h4>
 | |
| 	<div class="ui attached segment">
 | |
| 		<div class="ui form">
 | |
| 			<div class="field">
 | |
| 				<label>{{svg "octicon-terminal"}} {{.locale.Tr "packages.pub.install"}}</label>
 | |
| 				<div class="markup"><pre class="code-block"><code>dart pub add {{.PackageDescriptor.Package.Name}}:{{.PackageDescriptor.Version.Version}} --hosted-url=<gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{.PackageDescriptor.Owner.Name}}/pub/"></gitea-origin-url></code></pre></div>
 | |
| 			</div>
 | |
| 			<div class="field">
 | |
| 				<label>{{.locale.Tr "packages.pub.documentation" "https://docs.gitea.io/en-us/usage/packages/pub/" | Safe}}</label>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| 	{{if or .PackageDescriptor.Metadata.Description .PackageDescriptor.Metadata.Readme}}
 | |
| 		<h4 class="ui top attached header">{{.locale.Tr "packages.about"}}</h4>
 | |
| 		{{if .PackageDescriptor.Metadata.Description}}<div class="ui attached segment">{{.PackageDescriptor.Metadata.Description}}</div>{{end}}
 | |
| 		{{if .PackageDescriptor.Metadata.Readme}}<div class="ui attached segment">{{RenderMarkdownToHtml $.Context .PackageDescriptor.Metadata.Readme}}</div>{{end}}
 | |
| 	{{end}}
 | |
| {{end}}
 |