Merge pull request #6846 from ashmaroli/variable-for-avatar
Assign and use Liquid variables in templates
This commit is contained in:
		
						commit
						8caa101439
					
				|  | @ -13,10 +13,10 @@ | |||
|     <span class="post-date"> | ||||
|       {{ post.date | date_to_string }} | ||||
|     </span> | ||||
|     <a href="https://github.com/{{ post.author }}" class="post-author"> | ||||
|       {% assign author = post.author %} | ||||
|     {% assign author = post.author %} | ||||
|     <a href="https://github.com/{{ author }}" class="post-author"> | ||||
|       {% avatar user=author size=24 %} | ||||
|       {{ post.author }} | ||||
|       {{ author }} | ||||
|     </a> | ||||
|   </div> | ||||
|   <div class="post-content"> | ||||
|  |  | |||
|  | @ -19,9 +19,10 @@ layout: news | |||
|     <span class="post-date"> | ||||
|       {{ page.date | date_to_string }} | ||||
|     </span> | ||||
|     <a href="https://github.com/{{ page.author }}" class="post-author"> | ||||
|       {% avatar {{ page.author}} size=24 %} | ||||
|       {{ page.author }} | ||||
|     {% assign author = page.author %} | ||||
|     <a href="https://github.com/{{ author }}" class="post-author"> | ||||
|       {% avatar user=author size=24 %} | ||||
|       {{ author }} | ||||
|     </a> | ||||
|   </div> | ||||
|   <div class="post-content"> | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue