Full Page

Interdisciplinary Journal of Human-Computer Interaction

Liminal Systems

Liminal Systems publishes peer-reviewed research at the boundary of HCI, cognitive science, and design theory. We prioritize work that challenges existing frameworks over work that confirms them. Open-access, no APCs. Published biannually (June and December). Indexed in ACM Digital Library, Scopus, and DBLP.

Current Issue

'Friction as Feature: Designing for Deliberate Slowness' — K. Nakamura & L. Chen, 'Embodied Interaction in Augmented Workspaces' — P. Fernandez et al., 'The Aesthetics of Error States' — M. Johansson, 'Trust Repair After Algorithmic Failure' — A. Okafor & R. Singh

Editorial Board

Prof. Judith Keller — ETH Zurich (Editor-in-Chief), Dr. Tomoko Hayashi — University of Tokyo, Prof. David Ekow — TU Delft, Dr. Amira Hassan — MIT Media Lab

Academic Journal

Open-access journal page with current issue, editorial board, and submission guidelines.

by DesignGenerate 1 stars 1 renders 0 forks

Schema

FieldType
journal_name string
field string
about text
current_issue list<string>
editors list<string>
email email
submit_url link

Apply Values

POST JSON to the API endpoint:

POST /api/templates/academic-journal/apply
Content-Type: application/json

{
  "journal_name": "Liminal Systems",
  "field": "Interdisciplinary Journal of Human-Computer Interaction",
  "about": "Liminal Systems publishes peer-reviewed research at the boundary of HCI, cognitive science, and design theory. We prioritize work that challenges existing frameworks over work that confirms them.\n\nOpen-access, no APCs. Published biannually (June and December). Indexed in ACM Digital Library, Scopus, and DBLP.",
  "current_issue": [
    "'Friction as Feature: Designing for Deliberate Slowness' — K. Nakamura & L. Chen",
    "'Embodied Interaction in Augmented Workspaces' — P. Fernandez et al.",
    "'The Aesthetics of Error States' — M. Johansson",
    "'Trust Repair After Algorithmic Failure' — A. Okafor & R. Singh"
  ],
  "editors": [
    "Prof. Judith Keller — ETH Zurich (Editor-in-Chief)",
    "Dr. Tomoko Hayashi — University of Tokyo",
    "Prof. David Ekow — TU Delft",
    "Dr. Amira Hassan — MIT Media Lab"
  ],
  "email": "[email protected]",
  "submit_url": "https://example.com/submit"
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Academic Journal" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{journal_name:string}}, {{field:string}}, {{about:text}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "journal_name": "string",
  "field": "string",
  "about": "text",
  "current_issue": [
    "string"
  ],
  "editors": [
    "string"
  ],
  "email": "email",
  "submit_url": "link"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{journal_name:string}}` → string
- `{{field:string}}` → string
- `{{about:text}}` → text
- `{{current_issue:list<string>}}` → list<string>
- `{{editors:list<string>}}` → list<string>
- `{{email:email}}` → email
- `{{submit_url:link}}` → link

Output ONLY the HTML code block. No explanation.