Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html « layouts - github.com/gohugoio/hugoTestProjectJSModImports.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f8a43d8267ab3dc4f70a80f62780a1c9914c49c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>
    {{ .Title }}
  </title>
  {{ $js := resources.Get "js/main.js" | js.Build (dict "minify" false ) }}
  <script src="{{ $js.RelPermalink }}"></script>
  {{ partialCached "jslibs/alpinejs/script-src.html" "-" }}
</head>
<body class="mt-10">
<div class="" x-data="{}">
  <ul>
    <li x-text="hello1()"></li>
    <li x-text="hello2()"></li>
    <li x-text="hello3()"></li>
    <li x-text="hello4()"></li>
    <li x-text="data.Hugo"></li>
  </ul>
</div>