-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (92 loc) · 4.49 KB
/
index.html
File metadata and controls
107 lines (92 loc) · 4.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
layout: default
overtitle:
title: Projects
description: AMPL develops tools and methodologies for achieving a more egalitarian archiving practice in Latin America and beyond.
featured_image: /images/social.jpg
---
<div class="page-home">
{% if site.data.settings.hero_settings.background_image %}
<img src="{{ site.data.settings.hero_settings.background_image | relative_url }}" class="hero__background" draggable="false">
{% endif %}
<section class="hero">
<div class="wrap grid">
<div class="title">
<!-- <h1 style="font-size: 40px">{{ page.title }}</h1>
<p class="subtitle">{{ page.overtitle }}</p> -->
</div>
<p class="intro subtitle--light">
Welcome to the <span style="font-weight: 600">Archives, Memory, and Preservation Lab</span>, a laboratory for research and learning in the <a href="https://clair.ucsb.edu" style="font-weight: 400">Center for Latin American and Iberian Research</a> at the University of California, Santa Barbara.
<br>
<br>
<span style="font-weight: 600">AMPL</span> develops tools and methodologies for achieving a more egalitarian archiving practice in Latin America and beyond.
</p>
</div>
</section>
<section class="listing">
<div class="wrap">
<h1 style="margin-bottom: 3rem;">Current projects</h1>
{% for project in site.projects reversed %}
{% if project.status != "completed" %}
{% if project.accent_color %}{% capture accent_color %}{{ project.accent_color }}{% endcapture %}{% endif %}
<article class="project__preview">
<h2 class="project__title"><a href="{{ project.url | relative_url }}" style="--accent: {{ accent_color }}">{{ project.title }}</a></h2>
<div class="project__images owl-carousel" style="--accent: {{ accent_color }}">
{% for image in project.gallery_images %}
<a href="{{ project.url | relative_url }}"><img src="{{ '/images/projects/' | relative_url}}{{ image }}" alt="{{ project.title }}" class="project__image"></a>
{% endfor %}
</div>
<div class="project__content grid" style="border-color: {{ accent_color }}">
<p class="project__subtitle subtitle--light">{{ project.subtitle }}</p>
<p class="project__description --small">
{{ project.description }}
<a href="{{ project.url | relative_url }}" class="project__link button--text --right"
style="color: {{ accent_color }}; --color-var: {{ accent_color }}; border-bottom: none; font-family: 'Silkscreen', sans-serif; font-size: 110%">More details</a>
</p>
</div>
</article>
{% endif %}
{% endfor %}
</div>
</section>
<section class="listing">
<div class="wrap">
<h1 style="margin-bottom: 3rem;">Completed Projects</h1>
{% for project in site.projects reversed %}
{% if project.status == "completed" %}
{% if project.accent_color %}{% capture accent_color %}{{ project.accent_color }}{% endcapture %}{% endif %}
<article class="project__preview">
<h2 class="project__title"><a href="{{ project.url | relative_url }}" style="--accent: {{ accent_color }}">{{ project.title }}</a></h2>
<div class="project__images owl-carousel" style="--accent: {{ accent_color }}">
{% for image in project.gallery_images %}
<a href="{{ project.url | relative_url }}"><img src="{{ '/images/projects/' | relative_url}}{{ image }}" alt="{{ project.title }}" class="project__image"></a>
{% endfor %}
</div>
<div class="project__content grid" style="border-color: {{ accent_color }}">
<p class="project__subtitle subtitle--light">{{ project.subtitle }}</p>
<p class="project__description --small">
{{ project.description }}
<a href="{{ project.url | relative_url }}" class="project__link button--text --right"
style="color: {{ accent_color }}; --color-var: {{ accent_color }}; border-bottom: none; font-family: 'Silkscreen', sans-serif; font-size: 110%">More details</a>
</p>
</div>
</article>
{% endif %}
{% endfor %}
</div>
</section>
<!-- <section class="recent-posts">
<div class="wrap grid">
<header class="recent-posts__header">
<h4>Recent blog posts</h4>
<a href="{{ '/blog' | relative_url }}" class="action button--text--accent --right">All Posts</a>
</header>
<div class="recent-posts__list grid">
{% for post in site.posts limit: 3 %}
{% include component__post-preview.html %}
{% endfor %}
</div>
<a href="{{ '/blog' | relative_url }}" class="action-bottom button--text--accent --right">All Posts</a>
</div>
</section> -->
</div>