{"body":"#!/usr/bin/env raku\nuse v6.d;\n\nuse HTML::Functional;\n\nmy $head = head [\n    meta :charset<utf-8>;\n    meta :name<viewport>, :content<width=device-width, initial-scale=1>;\n    meta :name<description>, :content<raku does htmx>;\n\n    title \"Raku HTML::Functional\";\n\n    script :src<https://unpkg.com/htmx.org@1.7.0\">;\n    link :rel<stylesheet>, :href<https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css>;\n\n    style\n            q:to/END/;\n        .jumbotron {\n            background-color: #e6ffe6;\n            text-align: center;\n        }\n        END\n];\n\nmy $body = body [\n    div :class<jumbotron>, [\n        h1 \"Welcome to Dunder Mifflin!\";                                    #use ; to stop <h1> slurping <p>\n        p  \"Dunder Mifflin Inc. (stock symbol {strong 'DMI'}) \" ~\n                q:to/END/;\n            is a micro-cap regional paper and office\n            supply distributor with an emphasis on servicing\n            small-business clients.\n            END\n    ];\n\n    p :hx-get<https://v2.jokeapi.dev/joke/Any?format=txt&safe-mode>,\n            \"Click Me\";\n\n    p ^'<div class=\"content\">Escaped & Raw HTML!</div>';\n];\n\nmy $html = html :lang<en>, [\n    $head,\n    $body,\n];\n\nsay \"<!doctype html>$html\";","name":"","extension":"pl","url":"https://www.irccloud.com/pastebin/8DwTdjSy","modified":1732203777,"id":"8DwTdjSy","size":1232,"lines":47,"own_paste":false,"theme":"","date":1732203777}