mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 19:38:23 +00:00 
			
		
		
		
	- Moved mail templates to new directories. - Added new devtest ymls. - Embedded styles as much as possible. - Added new translation keys for actions email. --------- Signed-off-by: NorthRealm <155140859+NorthRealm@users.noreply.github.com> Co-authored-by: delvh <dev.lh@web.de>
		
			
				
	
	
		
			22 lines
		
	
	
		
			444 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			444 B
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
| 	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 | |
| 	<title>{{.Subject}}</title>
 | |
| </head>
 | |
| 
 | |
| {{$url := HTMLFormat "<a href='%[1]s'>%[2]s</a>" .Link .Repo}}
 | |
| <body>
 | |
| 	<p>{{.Subject}}.
 | |
| 		{{.locale.Tr "mail.repo.transfer.body" $url}}
 | |
| 	</p>
 | |
| 	<div style="font-size:small; color:#666;">
 | |
| 		<p>
 | |
| 			---
 | |
| 			<br>
 | |
| 			<a href="{{.Link}}">{{.locale.Tr "mail.view_it_on" AppName}}</a>.
 | |
| 		</p>
 | |
| 	</div>
 | |
| </body>
 | |
| </html>
 |