Compare commits

...

3 Commits

Author SHA1 Message Date
f89cd5e2dc Update template. 2024-12-17 11:25:14 +00:00
root
a63fce8983 Version change. 2024-12-15 23:58:28 +00:00
83ede59c76 Update. 2024-12-15 23:58:28 +00:00
4 changed files with 42 additions and 38 deletions

View File

@ -21,9 +21,9 @@
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
<h2 class="hero ui icon header">
C Development
</h1>
</h2>
<p class="large">
With C I mostly reinvent to wheel and rewrite existing applications from scratch to learn what is under the hood. I am able to to write nginx-grade webservers with webdav support. I also have experience in writing Redis quality key-value stores. Projects made:
<li>HTTP(S) Server with support for reverse proxy and load balancing</li>
@ -36,9 +36,9 @@
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
<h2 class="hero ui icon header">
Python development
</h1>
</h2>
<p class="large">
Python is my goto language for software development.
Technologies I prefer to work with but not limited to are:
@ -52,9 +52,9 @@
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
<h2 class="hero ui icon header">
Databases
</h1>
</h2>
<p class="large">
I have experience with:
<ul>
@ -68,9 +68,9 @@
</p>
</div>
<div class="eight wide center column">
<h1 class="hero ui icon header">
<h2 class="hero ui icon header">
Other languages
</h1>
</h2>
<p class="large">
I have professional experience with:
<ul>
@ -85,6 +85,8 @@
<li>Actionscript</li>
<li>Node</li>
<li>JavaScript (ECMAScript)</li>
<li>HTML</li>
<li>CSS</li>
</ul>
</p>
</div>

View File

@ -21,8 +21,7 @@
{{ if and (not .IsSigned) (not .HideRepoInfo) (not .IsBlame)}}
<div class="repo-description gt-word-break">
Source files of this project at <a href="#bottom">bottom</a> of page. All source is under MIT license if no LICENSE file in list.
<i>All source listed <a href="#repo-files-table">below</a> is under MIT license if no LICENSE file stating different is available.</i>
</div>
{{ end }}
@ -55,31 +54,19 @@
<!-- HIER-->
{{$n := len .TreeNames}}
{{$l := Eval $n "-" 1}}
{{if .IsSigned }}
{{if .IsViewFile}}
{{template "repo/view_file" .}}
{{else if .IsBlame}}
{{template "repo/blame" .}}
{{else}}{{/* IsViewDirectory */}}
<div id="bottom">
{{template "repo/sub_menu" .}}
{{template "repo/view_list" .}}
</div>
{{end}}
{{ end }}
{{ if .IsSigned }}
{{if .IsSigned }}
{{template "repo/sub_menu" .}}
{{template "repo/view_list" .}}
{{if .IsViewFile}}
{{template "repo/view_file" .}}
{{else if .IsBlame}}
{{template "repo/blame" .}}
{{else}}{{/* IsViewDirectory */}}
{{ end }}
{{if not .IsSigned }}
{{if .IsViewFile}}
{{template "repo/view_file" .}}
{{else if .IsBlame}}
{{template "repo/blame" .}}
{{else}}
{{/* IsViewDirectory */}}
<div id="bottom">
{{template "repo/view_list" .}}
</div>
{{end}}
{{ end }}
{{$isHomepage := (eq $n 0)}}
<div class="repo-button-row" data-is-homepage="{{$isHomepage}}">
<div class="repo-button-row-left">
@ -182,6 +169,18 @@
</div>
</div>
<!-- old place -->
{{ if .IsSigned }}
{{template "repo/sub_menu" .}}
{{if .IsViewFile}}
{{template "repo/view_file" .}}
{{else if .IsBlame}}
{{template "repo/blame" .}}
{{else}}
{{template "repo/view_list" .}}
{{end}}
{{ end }}
</div>
</div>
{{template "base/footer" .}}

View File

@ -92,11 +92,12 @@
{{ if false }}
</h4>
{{end}}
<div class="ui bottom attached table unstackable segment">
<div class="bottom attached table unstackable segment">
{{if not (or .IsMarkup .IsRenderedHTML)}}
{{template "repo/unicode_escape_prompt" dict "EscapeStatus" .EscapeStatus "root" $}}
{{end}}
<div class="file-view{{if .IsMarkup}} markup {{.MarkupType}}{{else if .IsPlainText}} plain-text{{else if .IsTextSource}} code-view{{end}}">
<!-- file-view -->
<div style="padding-bottom: 16px;" class="{{if .IsMarkup}} markup {{.MarkupType}}{{else if .IsPlainText}} plain-text{{else if .IsTextSource}} code-view{{end}}">
{{if .IsFileTooLarge}}
{{template "shared/filetoolarge" dict "RawFileLink" .RawFileLink}}
{{else if .IsMarkup}}

View File

@ -1,4 +1,4 @@
{{if and .ReadmeExist (or .IsMarkup .IsPlainText)}}
{{if and (not .IsSigned) .ReadmeExist (or .IsMarkup .IsPlainText)}}
{{template "repo/view_file" .}}
{{end}}
<table id="repo-files-table" class="ui single line table tw-mt-0" {{if .HasFilesWithoutLatestCommit}}hx-indicator="tr.notready td.message span" hx-trigger="load" hx-swap="morph" hx-post="{{.LastCommitLoaderURL}}"{{end}}>
@ -71,4 +71,6 @@
{{end}}
</tbody>
</table>
{{if and (.IsSigned) .ReadmeExist (or .IsMarkup .IsPlainText)}}
{{template "repo/view_file" .}}
{{end}}