Switching out "app" for "recipes"
continuous-integration/drone/pr Build is failing Details

- HTML pages
- Elm pages (about page)
- All headings
This commit is contained in:
Eiven Mitchell 2022-03-24 09:43:29 -04:00
parent 6bf2df4a45
commit 2e70d9db66
5 changed files with 10 additions and 10 deletions

View File

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS goes here -->
<link rel="stylesheet" href="/style.css">
<title>abra apps</title>
<title>abra recipes</title>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!--<link rel="stylesheet"
@ -20,7 +20,7 @@
<nav class="navbar navbar-expand-lg sticky-top font-weight-bold" style="background: rgb(255, 79, 136) none repeat scroll 0% 0%;">
<a class="navbar-brand text-dark" href="/">
<img src="/logo.png" class="d-inline-block align-top mr-2" alt="" width="30" height="30">
abra apps</a>
abra recipes</a>
</nav>
<div class="container-fluid">
<div class="pt-3">
@ -28,7 +28,7 @@
<div class="card">
<div class="card-header">
<h2>
abra apps</h2>
abra recipes</h2>
</div>
<div class="card-body">
<p>

View File

@ -38,13 +38,13 @@ view { params } =
coopcloud_link = a [ href "https://coopcloud.tech/" ] [ text "Co-op Cloud" ]
source_link = a [ href "https://git.coopcloud.tech/coop-cloud/abra-apps" ] [ text "source" ]
in
{ title = "about abra apps"
{ title = "about abra recipes"
, body =
[ div [ class "pt-3" ]
[ div [ class "col-md-6 col-sm-10 mb-3 offset-md-3 offset-sm-1" ]
[ div [ class "card" ]
[ div [ class "card-header" ]
[ h2 [] [ text "abra apps" ]
[ h2 [] [ text "abra recipes" ]
]
, div [ class "card-body" ]
[ p []

View File

@ -151,13 +151,13 @@ title : Model -> String
title model =
case model.status of
Loading ->
"loading abra apps"
"loading abra recipes"
Failure ->
"error - abra apps"
"error - abra recipes"
Success app ->
app.name ++ " abra apps"
app.name ++ " abra recipes"
body : Model -> Html Msg

View File

@ -209,7 +209,7 @@ subscriptions model =
view : Model -> Document Msg
view model =
{ title = "abra apps"
{ title = "abra recipes"
, body = [ body model ]
}

View File

@ -79,7 +79,7 @@ view { page, toMsg } model =
, alt ""
, width 30
, height 30 ] []
, text "abra apps"
, text "abra recipes"
]
, ul [ class "navbar-nav" ]
[ li [ class "nav-tem" ] [ a [ class "nav-link text-dark", href (Route.toString Route.About) ] [ text "about" ] ]