-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (26 loc) · 1.17 KB
/
index.html
File metadata and controls
36 lines (26 loc) · 1.17 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
---
layout: default
title: "Home"
---
<div class="font-ibmsans my-4 p-4 space-y-2">
<p class="-skew-1">
<span class="font-ibmserif text-base">
Some stories are written. Others emerge synthetically, in collectives.
CUØ draws on expertise in literary theory, sociology of knowledge,
linguistics, and computation to study how stories shape our personal and shared
beliefs.<a href="#footnote" class="align-super text-xs
font-ibmsans">6</a>
</span>
<!-- <span id="generated-text" class="font-ibmsans"></span>-->
</p>
</div>
{% assign all_projects = site.projects | size %}
{% assign highlighted_projects = site.projects | where: "highlight", true | size %}
{% assign project_count_text = "Showing " | append: highlighted_projects | append: " out of " | append: all_projects | append: " projects." %}
{% include section-break.html section="Featured projects" subsection=project_count_text %}
<div>
{% assign projects = site.projects | sort: "date" | reverse | where: "highlight",true %}
{% include collection.html
show-category-name=true
projects=projects %}
</div>