Archie updates
Этот коммит содержится в:
		
							родитель
							
								
									5b45719a9d
								
							
						
					
					
						Коммит
						e042cddcc4
					
				| @ -1,7 +1,7 @@ | |||||||
| export default [ | export default [ | ||||||
| 	{ | 	{ | ||||||
| 		//"id": "1tSZ6hKWKR0u3pIxvm3L_6SO3ab2yqjM8ww7GMBU3EwE",
 | 		"id": "1tSZ6hKWKR0u3pIxvm3L_6SO3ab2yqjM8ww7GMBU3EwE", | ||||||
| 		"id": "1sDuhhouZ1IYsi355slAtY2SeF6781vO8AvhVL-EE_3A", | 		//"id": "1sDuhhouZ1IYsi355slAtY2SeF6781vO8AvhVL-EE_3A",
 | ||||||
| 		"filepath": "src/data/copy.json" | 		"filepath": "src/data/copy.json" | ||||||
| 	} | 	} | ||||||
| ] | ] | ||||||
										
											
												Различия файлов скрыты, потому что одна или несколько строк слишком длинны
											
										
									
								
							| @ -1,13 +1,15 @@ | |||||||
| <script> | <script> | ||||||
| 	export let title | 	export let title | ||||||
| 	export let text | 	export let paragraphs | ||||||
| 	export let id | 	export let id | ||||||
| </script> | </script> | ||||||
| 
 | 
 | ||||||
| <input id={id} class="toggle" type="checkbox" /> | <input id={id} class="toggle" type="checkbox" /> | ||||||
| <label for={id} class="lbl-toggle top">{title}</label> | <label for={id} class="lbl-toggle top">{title}</label> | ||||||
| <div class="collapsible-content"> | <div class="collapsible-content"> | ||||||
| 	<p>{@html text}</p> | 	{#each paragraphs as par} | ||||||
|  | 		<p class="mb-4">{@html par}</p> | ||||||
|  | 	{/each} | ||||||
| </div> | </div> | ||||||
| 
 | 
 | ||||||
| <style> | <style> | ||||||
|  | |||||||
| @ -2,7 +2,7 @@ | |||||||
| 	import copy from '../../data/copy.json'; | 	import copy from '../../data/copy.json'; | ||||||
| </script> | </script> | ||||||
| 
 | 
 | ||||||
| <section class="content title section" style:background-image={"url('images/fiat_2024_banner_background.jpg')"}> | <section class="content title section" style:background-image={"url('images/fiat_2024_banner_background_new.jpg')"}> | ||||||
| 	<div class="container has-text-centered"> | 	<div class="container has-text-centered"> | ||||||
| 		<div class="logos"> | 		<div class="logos"> | ||||||
| 			<a href="https://www.atlanticcouncil.org" | 			<a href="https://www.atlanticcouncil.org" | ||||||
| @ -16,6 +16,7 @@ | |||||||
| 		</div> | 		</div> | ||||||
| 		<h1 class="title is-size-1">{copy.meta.title}</h1> | 		<h1 class="title is-size-1">{copy.meta.title}</h1> | ||||||
| 		<h2 class="subtitle is-size-4 has-text-weight-bold">{copy.meta.subtitle}</h2> | 		<h2 class="subtitle is-size-4 has-text-weight-bold">{copy.meta.subtitle}</h2> | ||||||
|  | 		<h3 class="subtitle is-size-5 is-italic">{copy.meta.subsubtitle}</h3> | ||||||
| 	</div> | 	</div> | ||||||
| </section> | </section> | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -228,18 +228,20 @@ | |||||||
| 
 | 
 | ||||||
| <section class="section"> | <section class="section"> | ||||||
| 	<div class="container has-text-centered"> | 	<div class="container has-text-centered"> | ||||||
| 		<!--h1 class="title is-size-1">{copy.meta.title}</h1> | 		<div class="intro"> | ||||||
|         <h2 class="subtitle is-size-4 has-text-weight-bold">{copy.meta.subtitle}</h2--> |  | ||||||
| 		{#each copy.intro as block} | 		{#each copy.intro as block} | ||||||
| 			{#if block.type == 'text'} | 			{#if block.type == 'text'} | ||||||
| 				<p class="intro">{block.text}</p> | 				{#each block.paragraphs as par} | ||||||
|  | 					<p class="mb-4">{@html par}</p> | ||||||
|  | 				{/each} | ||||||
| 			{/if} | 			{/if} | ||||||
| 		{/each} | 		{/each} | ||||||
| 	</div> | 	</div> | ||||||
|  | 	</div> | ||||||
| 	<div class="container"> | 	<div class="container"> | ||||||
| 		{#each copy.intro as block} | 		{#each copy.intro as block} | ||||||
| 			{#if block.type == 'concealed-text'} | 			{#if block.type == 'concealed-text'} | ||||||
| 				<Collapsible title={block.title} text={block.text} id={block.id} /> | 				<Collapsible title={block.title} paragraphs={block.paragraphs} id={block.id} /> | ||||||
| 			{/if} | 			{/if} | ||||||
| 		{/each} | 		{/each} | ||||||
| 	</div> | 	</div> | ||||||
| @ -298,10 +300,12 @@ | |||||||
| 	<div class="container"> | 	<div class="container"> | ||||||
| 		{#each copy.moreInfo as block} | 		{#each copy.moreInfo as block} | ||||||
| 			{#if block.type == 'text'} | 			{#if block.type == 'text'} | ||||||
| 				<p>{block.text}</p> | 				{#each block.paragraphs as par} | ||||||
|  | 					<p class="mb-4">{@html par}</p> | ||||||
|  | 				{/each} | ||||||
| 			{/if} | 			{/if} | ||||||
| 			{#if block.type == 'concealed-text'} | 			{#if block.type == 'concealed-text'} | ||||||
| 				<Collapsible title={block.title} text={block.text} id={block.id} /> | 				<Collapsible title={block.title} paragraphs={block.paragraphs} id={block.id} /> | ||||||
| 			{/if} | 			{/if} | ||||||
| 		{/each} | 		{/each} | ||||||
| 	</div> | 	</div> | ||||||
| @ -345,11 +349,4 @@ | |||||||
| 		padding: 1rem; | 		padding: 1rem; | ||||||
| 		z-index: 750; | 		z-index: 750; | ||||||
| 	} | 	} | ||||||
| 	.cases-control { |  | ||||||
| 		display: inline-block; |  | ||||||
| 		margin-right: 3rem; |  | ||||||
| 	} |  | ||||||
| 	.sort-label { |  | ||||||
| 		font-size: 0.9rem; |  | ||||||
| 	} |  | ||||||
| </style> | </style> | ||||||
|  | |||||||
							
								
								
									
										
											Двоичные данные
										
									
								
								static/images/fiat_2024_banner_background_new.jpg
									
									
									
									
									
										Обычный файл
									
								
							
							
						
						
									
										
											Двоичные данные
										
									
								
								static/images/fiat_2024_banner_background_new.jpg
									
									
									
									
									
										Обычный файл
									
								
							
										
											Двоичный файл не отображается.
										
									
								
							| После Ширина: | Высота: | Размер: 47 KiB | 
		Загрузка…
	
	
			
			x
			
			
		
	
		Ссылка в новой задаче
	
	Block a user
	 Maarten
						Maarten