Compare commits

..

No commits in common. "f89cd5e2dce0cb771b0f609897e97e7158680b58" and "ba7ab94df0e1e4b3b966b035084a9f31d55dd385" have entirely different histories.

4 changed files with 38 additions and 42 deletions

View File

@ -21,9 +21,9 @@
</div> </div>
<div class="eight wide center column"> <div class="eight wide center column">
<h2 class="hero ui icon header"> <h1 class="hero ui icon header">
C Development C Development
</h2> </h1>
<p class="large"> <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: 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> <li>HTTP(S) Server with support for reverse proxy and load balancing</li>
@ -36,9 +36,9 @@
</p> </p>
</div> </div>
<div class="eight wide center column"> <div class="eight wide center column">
<h2 class="hero ui icon header"> <h1 class="hero ui icon header">
Python development Python development
</h2> </h1>
<p class="large"> <p class="large">
Python is my goto language for software development. Python is my goto language for software development.
Technologies I prefer to work with but not limited to are: Technologies I prefer to work with but not limited to are:
@ -52,9 +52,9 @@
</p> </p>
</div> </div>
<div class="eight wide center column"> <div class="eight wide center column">
<h2 class="hero ui icon header"> <h1 class="hero ui icon header">
Databases Databases
</h2> </h1>
<p class="large"> <p class="large">
I have experience with: I have experience with:
<ul> <ul>
@ -68,9 +68,9 @@
</p> </p>
</div> </div>
<div class="eight wide center column"> <div class="eight wide center column">
<h2 class="hero ui icon header"> <h1 class="hero ui icon header">
Other languages Other languages
</h2> </h1>
<p class="large"> <p class="large">
I have professional experience with: I have professional experience with:
<ul> <ul>
@ -85,8 +85,6 @@
<li>Actionscript</li> <li>Actionscript</li>
<li>Node</li> <li>Node</li>
<li>JavaScript (ECMAScript)</li> <li>JavaScript (ECMAScript)</li>
<li>HTML</li>
<li>CSS</li>
</ul> </ul>
</p> </p>
</div> </div>

View File

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

View File

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

View File

@ -1,4 +1,4 @@
{{if and (not .IsSigned) .ReadmeExist (or .IsMarkup .IsPlainText)}} {{if and .ReadmeExist (or .IsMarkup .IsPlainText)}}
{{template "repo/view_file" .}} {{template "repo/view_file" .}}
{{end}} {{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}}> <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,6 +71,4 @@
{{end}} {{end}}
</tbody> </tbody>
</table> </table>
{{if and (.IsSigned) .ReadmeExist (or .IsMarkup .IsPlainText)}}
{{template "repo/view_file" .}}
{{end}}