* initial RTL support * fix dir in template-util * fix dir in blogs new * fix dir in blogs details * fix dir in posts new * fix dir in posts details * fix dir in posts remote * Fix dir in partials some parts should be recheck carefully in real usage
		
			
				
	
	
		
			17 lines
		
	
	
		
			451 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			451 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
@use templates::partials::post_card;
 | 
						|
@use plume_models::posts::Post;
 | 
						|
@use template_utils::*;
 | 
						|
 | 
						|
@(ctx: BaseContext, articles: Vec<Post>, link: &str, title: String)
 | 
						|
 | 
						|
@if !articles.is_empty() {
 | 
						|
<div class="h-feed">
 | 
						|
    <h2 dir="auto"><span class="p-name">@title</span> — <a href="@link">@i18n!(ctx.1, "View all")</a></h2>
 | 
						|
    <div class="cards">
 | 
						|
        @for article in articles {
 | 
						|
            @:post_card(ctx, article)
 | 
						|
        }
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
}
 |