Revert "setting up luctors website based off tfcs"
This reverts commit 773b3ed3e5
			
			
This commit is contained in:
		
							parent
							
								
									773b3ed3e5
								
							
						
					
					
						commit
						f442337fc1
					
				
					 218 changed files with 641 additions and 266 deletions
				
			
		| 
						 | 
				
			
			@ -3,21 +3,21 @@
 | 
			
		|||
        <div class="absolute inset-x-0 bottom-0 h-1/2 bg-gray-100"></div>
 | 
			
		||||
        <div class="mx-auto max-w-7xl p-0">
 | 
			
		||||
            <div class="relative sm:overflow-hidden">
 | 
			
		||||
                <div class="fixed inset-x-0 top-0" style="z-index:-10">
 | 
			
		||||
                    {{ $homepageImage := "" }}
 | 
			
		||||
                    {{ with .Site.Params.defaultBackgroundImage }}{{ $homepageImage = resources.Get . }}{{ end }}
 | 
			
		||||
                    {{ with .Site.Params.homepage.homepageImage }}{{ $homepageImage = resources.Get . }}{{ end }}
 | 
			
		||||
                    {{ if not (eq $homepageImage "") }}
 | 
			
		||||
                    <img class="w-full h-[1000px] object-cover m-0 nozoom" src="{{ $homepageImage.RelPermalink }}">
 | 
			
		||||
                <div class="absolute inset-0">
 | 
			
		||||
                    {{ with .Site.Params.homepage.homepageImage }}
 | 
			
		||||
                    {{ $homepageImage := resources.Get . }}
 | 
			
		||||
                    {{ if $homepageImage }}
 | 
			
		||||
                    <img class="h-full w-full object-cover m-0 nozoom" src="{{ $homepageImage.RelPermalink }}">
 | 
			
		||||
                    <div
 | 
			
		||||
                        class="absolute inset-0 h-[1000px] bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal">
 | 
			
		||||
                        class="absolute inset-0 bg-gradient-to-t from-neutral-100 dark:from-neutral-800 to-transparent dark:to-neutral-300  mix-blend-normal dark:mix-blend-multiply">
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div
 | 
			
		||||
                        class="opacity-70 absolute inset-0 h-[1000px] bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral dark:to-neutral-800 mix-blend-normal">
 | 
			
		||||
                        class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal">
 | 
			
		||||
                    </div>
 | 
			
		||||
                    {{ end }}
 | 
			
		||||
                    {{ end }}
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="relative px-4 py-16 sm:px-6 sm:py-24 lg:py-32 lg:px-8 flex flex-col items-center justify-center text-center">
 | 
			
		||||
                <div class="relative px-4 py-16 sm:px-6 sm:py-24 lg:py-32 lg:px-8 flex flex-col items-center">
 | 
			
		||||
                    {{ with .Site.Author.image }}
 | 
			
		||||
                    {{ $authorImage := resources.Get . }}
 | 
			
		||||
                    {{ if $authorImage }}
 | 
			
		||||
| 
						 | 
				
			
			@ -39,7 +39,7 @@
 | 
			
		|||
                        <div class="flex flex-wrap">
 | 
			
		||||
                            {{ range $links := . }}
 | 
			
		||||
                            {{ range $name, $url := $links }}
 | 
			
		||||
                            <a class="px-1 hover:text-primary-400 text-primary-800 dark:text-primary-200" href="{{ $url }}" target="_blank"
 | 
			
		||||
                            <a class="px-1 hover:text-primary-400 text-primary-300" href="{{ $url }}" target="_blank"
 | 
			
		||||
                                aria-label="{{ $name | title }}" rel="me noopener noreferrer">{{ partial
 | 
			
		||||
                                "icon.html" $name }}</a>
 | 
			
		||||
                            {{ end }}
 | 
			
		||||
| 
						 | 
				
			
			@ -54,15 +54,5 @@
 | 
			
		|||
    </div>
 | 
			
		||||
</article>
 | 
			
		||||
<section>
 | 
			
		||||
    {{ partial "recent-articles/main.html" . }}
 | 
			
		||||
</section>
 | 
			
		||||
{{ if .Site.Params.homepage.layoutBackgroundBlur | default false }}
 | 
			
		||||
<div id="background-blur" class="fixed opacity-0 inset-x-0 top-0 h-full single_hero_background nozoom backdrop-blur-2xl"></div>
 | 
			
		||||
<script>
 | 
			
		||||
    window.addEventListener('scroll', function (e) {
 | 
			
		||||
        var scroll = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0;
 | 
			
		||||
        var background_blur = document.getElementById('background-blur');
 | 
			
		||||
        background_blur.style.opacity = (scroll / 300)
 | 
			
		||||
    });
 | 
			
		||||
</script>
 | 
			
		||||
{{ end }}
 | 
			
		||||
    {{ partial "recent-articles.html" . }}
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -27,5 +27,5 @@
 | 
			
		|||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<section>
 | 
			
		||||
    {{ partial "recent-articles/main.html" . }}
 | 
			
		||||
</section>
 | 
			
		||||
    {{ partial "recent-articles.html" . }}
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -48,10 +48,11 @@
 | 
			
		|||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <section>
 | 
			
		||||
              {{ partial "partials/disciplemaking.html" . }}
 | 
			
		||||
            </section>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</article>
 | 
			
		||||
<section>
 | 
			
		||||
    {{ partial "recent-articles/main.html" . }}
 | 
			
		||||
    {{ partial "recent-articles.html" . }}
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -32,5 +32,5 @@
 | 
			
		|||
  <section class="prose dark:prose-invert">{{ .Content | emojify }}</section>
 | 
			
		||||
</article>
 | 
			
		||||
<section>
 | 
			
		||||
  {{ partial "recent-articles/main.html" . }}
 | 
			
		||||
  {{ partial "recent-articles.html" . }}
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue