all repos — website @ d3efe0a0788c2a5cf1a555ff4efd8e20ab60ca1d

personal website hosted at prithu.xyz, built using hugo

hugo-site/layouts/index.html

{{ partial "head.html" }}

<body>

  {{ partial "nav.html" }}

  <section id="intro">
    <div class="container">
      <svg id="stripes-green" width="237" xmlns="http://www.w3.org/2000/svg"
        viewBox="0 0 237 209" preserveAspectRatio="xMidYMid meet">
        <rect x="21" y="16" width="162" height="13" rx="6" transform="rotate(39 21 16)" fill="#8BEF89"/>
        <rect x="52" y="68" width="205" height="13" rx="6" transform="rotate(39 52 68)" fill="#8BEF89"/>
        <rect x="44" y="8" width="189" height="13" rx="6" transform="rotate(39 44 8)" fill="#8BEF89"/>
        <circle cx="152" cy="132" r="6" transform="rotate(39 152 132)" fill="#8BEF89"/>
        <circle cx="38" cy="65" r="6" transform="rotate(39 38 65)" fill="#8BEF89"/>
      </svg>
      <svg id="stripes-purp"width="204" xmlns="http://www.w3.org/2000/svg"
        viewBox="0 0 204 182" preserveAspectRatio="xMidYMid meet">
        <rect x="21" y="16" width="162" height="13" rx="6" transform="rotate(39 21 16)" fill="#B554E3"/>
        <rect x="52" y="68" width="162" height="13" rx="6" transform="rotate(39 52 68)" fill="#B554E3"/>
        <rect x="44" y="8" width="162" height="13" rx="6" transform="rotate(39 44 8)" fill="#B554E3"/>
        <circle cx="152" cy="132" r="6" transform="rotate(39 152 132)" fill="#B554E3"/>
        <circle cx="38" cy="65" r="6" transform="rotate(39 38 65)" fill="#B554E3"/>
      </svg>

      <div class="shadow-box">
        <svg id="triangle" xmlns="http://www.w3.org/2000/svg"
          viewBox="0 0 128 59" preserveAspectRatio="xMidYMid meet">
          <path d="M34 0l47 9 47 10L0 59z" />
        </svg>

        <svg id="circle" xmlns="http://www.w3.org/2000/svg"
          viewBox="0 0 74 74" preserveAspectRatio="xMidYMid meet">
          <circle cx="37" cy="37" r="37" />
        </svg>
        <div class="head-text">
          <h1>Prithu Goswami</h1>
        </div>

        <div class="intro-text">
          <p>
          Hey there, I am Prithu Goswami. I am currently studying at PES
          University South Campus, Bangalore(PESIT-BSC) where I am persuing
          a Bachelor's degree in Computer Science and Engineering.
          </p>
          <p>
          I love to build new things and design solutions to problems.
          I have been fascinated by computers and technology since a very
          young age.
          </p>
        </div>
        <!-- #b554e3 -->

        <img id="profile-pic" src="./img/duotone-profile-small.jpeg">


        <div id="socials">
          <a href="mailto:prithugoswami524@gmail.com">
            <div class="sb mail">
              <img src="/img/mail.svg">
            </div>
          </a>
          <a href="https://github.com/prithugoswami" target="_blank">
            <div class="sb github">
              <img src="/img/github.svg">
            </div>
          </a>
          <a href="https://dribbble.com/prithugoswami" target="_blank">
            <div class="sb dribbble">
              <img src="/img/dribbble.svg">
            </div>
          </a>
          <a href="https://twitter.com/prithu524" target="_blank">
            <div class="sb twitter">
              <img src="/img/twitter.svg">
            </div>
          </a>
        </div>

      </div>
    </div>
    <div id="socials-2">
      <a href="mailto:prithugoswami524@gmail.com">
        <div class="sb mail">
          <img src="/img/mail.svg">
        </div>
      </a>
      <a href="https://github.com/prithugoswami" target="_blank">
        <div class="sb github">
          <img src="/img/github.svg">
        </div>
      </a>
      <a href="https://dribbble.com/prithugoswami" target="_blank">
        <div class="sb dribbble">
          <img src="/img/dribbble.svg">
        </div>
      </a>
      <a href="https://twitter.com/prithu524" target="_blank">
        <div class="sb twitter">
          <img src="/img/twitter.svg">
        </div>
      </a>
    </div>

  </section>

  <section id=projects class="page-section">
    <div class=container>
      <h1>Some of my works</h1>
      <div class="shadow-box">
        <div class="section-text">
          {{ range .Site.Data.projects }}
          <a href="{{ .url }}" target="_blank">
            <div class="section-item">
              <h2>{{ .title }}</h2>
              <p>{{ .description }}</p>
            </div>
          </a>
          {{ end }}
        </div>
        <a href="/projects/"><div class=btn id=project-cta>View All</div></a>
      </div>
    </div>
  </section>

  <section id=writeups class="page-section">
    <div class=container>
      <h1>I also write about stuff</h1>
      <div class="shadow-box">
        <div class="section-text">
          {{ range sort (where .Site.RegularPages "Section" "posts") "Date" }}
          <a href="{{ .RelPermalink }}" target="_blank">
            <div class=section-item>
              <h2>{{ .Title }}</h2>
              <p>{{ with .Params.description }}{{ . }}{{ else }}{{.Summary | truncate 110 }}{{ end }}</p>
              <!-- <p>{{ .Date.Format "2 Jan 2006" }}<p> -->
            </div>
          </a>
          {{ end }}
        </div>
        <a href="/posts/"><div class=btn id=writeup-cta>View All</div></a>
      </div>
    </div>
  </section>

  <section id=write>
    <div class=container>

    </div>
  </section>

</body>
</html>