Welcome to mirror list, hosted at ThFree Co, Russian Federation.

header.html « partials « layouts - github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c24eb41ee48490aadd0120a2f1a9e693aa20e9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script src="{{ `src/sada_main.js` | relURL }}"></script>
<div class="d-flex flex-column border-bottom border-secondary pl-2 pr-2">
  <h1 class="text-white mb-1">{{ .Site.Params.profile.name }}</h1>
  <div class="d-flex flex-row justify-content-between">
    {{ partial "social.html" . }}
    <h3
      class="toggleTheme text-white mt-2"
      onclick="toggleTheme()"
      title="toggle theme"
    >
      <i class="material-icons" style="cursor: pointer;">brightness_medium</i>
    </h3>
  </div>
</div>