2024-11-26 21:17:31 -06:00
|
|
|
module Blog.Helpers exposing (..)
|
|
|
|
|
2024-12-08 21:35:48 -06:00
|
|
|
import Config.CardFormat exposing (..)
|
|
|
|
import Config.Colour exposing (..)
|
|
|
|
import Config.Format exposing (..)
|
|
|
|
import Config.Identity exposing (..)
|
|
|
|
import Config.Style.Svgs exposing (..)
|
|
|
|
import Debate.Arguments.Helpers exposing (..)
|
|
|
|
import Debate.Cuckery.Helpers exposing (..)
|
|
|
|
import Debate.Debate.Types exposing (..)
|
|
|
|
import Debate.Gibberish.Helpers exposing (..)
|
|
|
|
import Effect exposing (Effect)
|
|
|
|
import Element as E exposing (..)
|
|
|
|
import Element.Background as B exposing (..)
|
|
|
|
import Element.Border as D
|
|
|
|
import Element.Font as F
|
|
|
|
import Html exposing (Html)
|
|
|
|
import Html.Attributes as H exposing (style)
|
|
|
|
import Layouts
|
|
|
|
import Page exposing (Page)
|
|
|
|
import Route exposing (Route)
|
|
|
|
import Shared
|
|
|
|
import View exposing (View)
|
2024-11-26 21:17:31 -06:00
|
|
|
|
2024-12-08 21:35:48 -06:00
|
|
|
|
|
|
|
underConstructionMaker : Element msg
|
|
|
|
underConstructionMaker =
|
|
|
|
row
|
|
|
|
topLevelBox
|
|
|
|
[ cardMaker
|
|
|
|
[ cardTitleMaker "HYPERBLOG"
|
|
|
|
, cardFormatter
|
|
|
|
[ cardContentSpacing
|
|
|
|
[ column
|
|
|
|
fieldSpacer
|
|
|
|
[ cardSubTitleMaker
|
|
|
|
[ column []
|
|
|
|
[ row
|
|
|
|
[ spacing 10
|
|
|
|
]
|
|
|
|
[ column [ width <| px 35 ] [ html construction ]
|
|
|
|
, column
|
|
|
|
[ width fill
|
|
|
|
, F.color colourTheme.textLightOrange
|
|
|
|
, F.bold
|
|
|
|
, alignBottom
|
|
|
|
]
|
|
|
|
[ text "under construction"
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|