aboutsummaryrefslogtreecommitdiff
path: root/dhall/authors.dhall
blob: 69cccdbab5b362caf7e61bf9bb706d37624362ed (plain)
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
let Author = ./types/Author.dhall

in  [ Author::{
      , name = "Xe Iaso"
      , handle = "xe"
      , picUrl = Some "/static/img/avatar.png"
      , link = Some "https://xeiaso.net"
      , twitter = Some "theprincessxena"
      , default = True
      , inSystem = True
      }
    , Author::{
      , name = "Jessie"
      , handle = "Heartmender"
      , picUrl = Some
          "https://cdn.xeiaso.net/file/christine-static/img/UPRcp1pO_400x400.jpg"
      , twitter = Some "BeJustFine"
      , inSystem = True
      }
    , Author::{
      , name = "Ashe"
      , handle = "ectamorphic"
      , picUrl = Some
          "https://cdn.xeiaso.net/file/christine-static/img/FFVV1InX0AkDX3f_cropped_smol.jpg"
      , inSystem = True
      }
    , Author::{ name = "Nicole", handle = "Twi", inSystem = True }
    , Author::{ name = "Mai", handle = "Mai", inSystem = True }
    , Author::{ name = "Sephira", handle = "Sephie", inSystem = True }
    ]