--- type: "movie" subType: null title: "28 Days Later" englishTitle: "28 Days Later" year: "2002" dataSource: "OMDbAPI" url: "https://www.imdb.com/title/tt0289043/" id: "tt0289043" genres: - "Drama" - "Horror" - "Sci-Fi" producer: "Danny Boyle" duration: "113 min" onlineRating: 7.5 actors: - "Cillian Murphy" - "Naomie Harris" - "Christopher Eccleston" image: "https://m.media-amazon.com/images/M/MV5BYTFkM2ViMmQtZmI5NS00MjQ2LWEyN2EtMTI1ZmNlZDU3MTZjXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_SX300.jpg" released: true streamingServices: premiere: "27/06/2003" watched: true lastWatched: "[[2023-07-02]]" personalRating: 6 CollapseMetaTable: true --- Parent:: [[@Cinematheque]] --- ```dataviewjs dv.paragraph(`> [!${dv.current().watched ? 'SUCCESS' : 'WARNING'}] ${dv.current().watched ? 'last watched on ' + dv.current().lastWatched : 'not yet watched'}`) ```   # `$= dv.current().title`   `$= dv.current().watched ? '**Rating**: ' + dv.current().personalRating + ' out of 10' : ''` ```toc ```   ### Details   **Genres**: `$= dv.current().genres.length === 0 ? ' - none' : dv.list(dv.current().genres)` `$= !dv.current().released ? '**Not released** The movie is not yet released.' : ''`   ```dataview list without id "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Type" + this.type + "
Online Rating" + this.onlineRating + "
Duration" + this.duration + "
Premiered" + this.premiere + "
Producer" + this.producer + "
" FROM "03.04 Cinematheque/28 Days Later (2002)" ```   ---   ### Poster   `$= '![Image|360](' + dv.current().image + ')'`