mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 02:05:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			370 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			370 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| @model BriefeViewModel;
 | |
| 
 | |
| <div class="ha-letterheader">
 | |
|     @await Html.PartialAsync("/Views/Shared/_LetterHead.cshtml", Model.MetaData)
 | |
| </div>
 | |
| 
 | |
| @if (Model.ParsedText != null) {
 | |
|     @Html.Raw(@Model.ParsedText)
 | |
| }
 | |
| 
 | |
| @if (Model.ParsedLineCount != null) {
 | |
|     @Html.Raw(@Model.ParsedLineCount)
 | |
| }
 | |
| 
 | |
| @if (Model.ParsedMarginals != null) {
 | |
|     @Html.Raw(@Model.ParsedMarginals)
 | |
| }
 | 
