alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
scroll all hunks together
author
Akshay
date
1 year ago
(Mar 31, 2025, 4:19 PM +0100)
commit
f129b4f1
f129b4f1a54b84168b97f1cc26864367f7f61a84
parent
b5d175fa
b5d175faa1c06933f502c798d2ab9cce6c5cfeaf
+22
-25
2 changed files
Expand all
Collapse all
Unified
Split
appview
pages
templates
fragments
diff.html
layouts
base.html
+21
-24
appview/pages/templates/fragments/diff.html
Reviewed
···
79
79
This is a binary file and will not be displayed.
80
80
</p>
81
81
{{ else }}
82
82
-
<pre class="overflow-x-auto">
83
83
-
{{- range .TextFragments -}}
84
84
-
<div class="bg-gray-100 dark:bg-gray-700 text-gray-500 dark:text-gray-400 select-none">{{- .Header -}}</div><div class="overflow-x-auto"><div class="min-w-full inline-block">
85
85
-
{{- range .Lines -}}
86
86
-
{{- if eq .Op.String "+" -}}
87
87
-
<div class="bg-green-100 dark:bg-green-800/30 text-green-700 dark:text-green-400 flex min-w-full">
88
88
-
<div class="w-10 flex-shrink-0 select-none p-1 text-center">{{ .Op.String }}</div>
89
89
-
<div class="p-1 whitespace-pre">{{ .Line }}</div>
90
90
-
</div>
91
91
-
{{- end -}}
92
92
-
{{- if eq .Op.String "-" -}}
93
93
-
<div class="bg-red-100 dark:bg-red-800/30 text-red-700 dark:text-red-400 flex min-w-full">
94
94
-
<div class="w-10 flex-shrink-0 select-none p-1 text-center">{{ .Op.String }}</div>
95
95
-
<div class="p-1 whitespace-pre">{{ .Line }}</div>
96
96
-
</div>
97
97
-
{{- end -}}
98
98
-
{{- if eq .Op.String " " -}}
99
99
-
<div class="bg-white dark:bg-gray-800 text-gray-500 dark:text-gray-400 flex min-w-full">
100
100
-
<div class="w-10 flex-shrink-0 select-none p-1 text-center">{{ .Op.String }}</div>
101
101
-
<div class="p-1 whitespace-pre">{{ .Line }}</div>
102
102
-
</div>
103
103
-
{{- end -}}
104
104
-
{{- end -}}</div></div>{{- end -}}
105
105
-
</pre>
82
82
+
<pre class="overflow-x-auto"><div class="overflow-x-auto"><div class="min-w-full inline-block">{{- range .TextFragments -}}<div class="bg-gray-100 dark:bg-gray-700 text-gray-500 dark:text-gray-400 select-none">{{- .Header -}}</div>{{- range .Lines -}}
83
83
+
{{- if eq .Op.String "+" -}}
84
84
+
<div class="bg-green-100 dark:bg-green-800/30 text-green-700 dark:text-green-400 flex min-w-full">
85
85
+
<div class="w-10 flex-shrink-0 select-none p-1 text-center">{{ .Op.String }}</div>
86
86
+
<div class="p-1 whitespace-pre">{{ .Line }}</div>
87
87
+
</div>
88
88
+
{{- end -}}
89
89
+
{{- if eq .Op.String "-" -}}
90
90
+
<div class="bg-red-100 dark:bg-red-800/30 text-red-700 dark:text-red-400 flex min-w-full">
91
91
+
<div class="w-10 flex-shrink-0 select-none p-1 text-center">{{ .Op.String }}</div>
92
92
+
<div class="p-1 whitespace-pre">{{ .Line }}</div>
93
93
+
</div>
94
94
+
{{- end -}}
95
95
+
{{- if eq .Op.String " " -}}
96
96
+
<div class="bg-white dark:bg-gray-800 text-gray-500 dark:text-gray-400 flex min-w-full">
97
97
+
<div class="w-10 flex-shrink-0 select-none p-1 text-center">{{ .Op.String }}</div>
98
98
+
<div class="p-1 whitespace-pre">{{ .Line }}</div>
99
99
+
</div>
100
100
+
{{- end -}}
101
101
+
{{- end -}}
102
102
+
{{- end -}}</div></div></pre>
106
103
{{- end -}}
107
104
{{ end }}
108
105
</div>
+1
-1
appview/pages/templates/layouts/base.html
Reviewed
···
14
14
{{ block "extrameta" . }}{{ end }}
15
15
</head>
16
16
<body class="bg-slate-100 dark:bg-gray-900 dark:text-white transition-colors duration-200">
17
17
-
<div class="container mx-auto px-1 pt-4 min-h-screen flex flex-col">
17
17
+
<div class="container mx-auto px-1 md:pt-4 min-h-screen flex flex-col">
18
18
<header style="z-index: 5">
19
19
{{ block "topbar" . }}
20
20
{{ template "layouts/topbar" . }}