Skip to content

Commit c934a14

Browse files
committed
move index to .md with home layout
1 parent 1480b65 commit c934a14

2 files changed

Lines changed: 104 additions & 0 deletions

File tree

_layouts/home.html

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
layout: default
3+
---
4+
5+
<section class="px-4 py-4 md:px-6 md:py-5 font-mono text-[0.72rem] leading-[1.75]">
6+
{{ content }}
7+
</section>
8+
9+
<section class="">
10+
11+
<!-- header -->
12+
<div class="flex items-baseline justify-between gap-4 px-4 py-3 md:px-6">
13+
<span class="font-mono text-[0.68rem] uppercase tracking-[0.12em] text-gray-500">
14+
Recent notes
15+
</span>
16+
<a href="{{ '/notes/' | relative_url }}" class="font-mono text-[0.68rem] uppercase tracking-[0.12em] hover:text-red-600">
17+
View all →
18+
</a>
19+
</div>
20+
21+
{% assign items = site.notes | sort: "date" | reverse %}
22+
{% if items and items.size > 0 %}
23+
24+
<div class="grid grid-cols-1 md:grid-cols-3">
25+
26+
{% for post in items limit:6 %}
27+
<article class="min-h-[17rem] border-black/10 px-4 py-5 md:border-r md:px-6">
28+
29+
<!-- meta -->
30+
<div class="mb-3 flex flex-wrap gap-x-3 gap-y-1 font-mono text-[0.66rem] leading-[1.65] text-gray-500">
31+
<span>{{ post.date | date: "%Y-%m-%d" }}</span>
32+
{% if post.authors %}
33+
<span>{{ post.authors | join: ", " }}</span>
34+
{% endif %}
35+
</div>
36+
37+
<!-- title -->
38+
<h2 class="mb-3 font-sans text-[1.5rem] font-black uppercase leading-[0.98] tracking-[-0.03em]">
39+
<a href="{{ post.url | relative_url }}" class="hover:text-red-600">
40+
{{ post.title }}
41+
</a>
42+
</h2>
43+
44+
<!-- summary -->
45+
<p class="mb-4 max-w-[40ch] text-[0.9rem] leading-[1.65] text-neutral-700">
46+
{% if post.summary %}
47+
{{ post.summary }}
48+
{% else %}
49+
{{ post.excerpt | strip_html | truncate: 220 }}
50+
{% endif %}
51+
</p>
52+
53+
<!-- tags -->
54+
{% if post.tags %}
55+
<div class="font-mono text-[0.66rem] uppercase tracking-[0.08em] text-red-600">
56+
{% for tag in post.tags %}
57+
<span>{{ tag }}</span>
58+
{% unless forloop.last %}
59+
<span class="text-gray-500"> · </span>
60+
{% endunless %}
61+
{% endfor %}
62+
</div>
63+
{% endif %}
64+
65+
</article>
66+
{% endfor %}
67+
68+
</div>
69+
70+
{% else %}
71+
<div class="px-4 py-5 font-mono text-[0.72rem] uppercase tracking-[0.08em] text-gray-500 md:px-6">
72+
No notes yet.
73+
</div>
74+
{% endif %}
75+
</section>

index.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: home
3+
title: Home
4+
permalink: /
5+
---
6+
7+
Lab Notes is a peer-reviewed journal on research design and method in the humanities and social
8+
sciences.
9+
10+
We publish concise methodological papers (1,200–2,500 words) that document how research is
11+
actually done: how questions are framed, data are assembled, tools are built or adapted, and
12+
results are produced, tested, and revised. The journal focuses on the practical conditions
13+
of inquiry—workflows, decisions, constraints, and collaborations—that rarely appear in
14+
conventional scholarship.
15+
16+
Submissions are expected to make a clear methodological contribution. This may include the
17+
introduction of a new method, the adaptation of an existing approach, the evaluation of a
18+
research design, or a critical account of a failed or partial experiment. We prioritize
19+
specificity over generality: papers should describe procedures, materials, and reasoning in
20+
sufficient detail to be understood, reused, or challenged by others.
21+
22+
All articles are peer-reviewed. We aim for a rigorous and efficient editorial process, with a
23+
focus on clarity, reproducibility, and usefulness to working researchers. The journal supports
24+
short formats, rapid turnaround, and multiple outputs across digital and print environments.
25+
26+
Lab Notes treats method as a primary object of scholarship. By making research design and
27+
process visible, the journal seeks to establish a shared record of practice across labs,
28+
fields, and institutions.
29+

0 commit comments

Comments
 (0)