Skip to content
Snippets Groups Projects
Forked from Rafael László / Git Presentation
1 commit behind, 1 commit ahead of the upstream repository.
index.html 2.64 KiB
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="theme-color" content="#2f3136" />
    <meta name="msapplication-navbutton-color" content="#2f3136" />
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="#2f3136" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1, shrink-to-fit=no"
    />
    <meta
      http-equiv="Cache-Control"
      content="no-cache, no-store, must-revalidate"
    />
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="0" />
    <title>My Docs</title>
    <link rel="icon" type="image/x-icon" href="favicon.ico" />
    <link rel="stylesheet" href="https://unpkg.com/docute@4/dist/docute.css" />
    <link rel="stylesheet" href="style.css" />
  </head>

  <body>
    <div id="docute"></div>
    <script src="https://unpkg.com/docute@4/dist/docute.js"></script>
    <script>
      new Docute({
        target: '#docute',
        title: 'Git',
        layout: 'wide',
        darkThemeToggler: true,
        detectSystemDarkTheme: true,
        highlight: ['bash'],
        nav: [
          {
            title: 'Főoldal',
            link: '/',
          },
          {
            title: 'GitSCH',
            link: 'https://git.sch.bme.hu/blintmester/git-presentation',
          },
        ],
        sidebar: [
          {
            title: 'Bevezető', // Hack
            children: [
              {
                title: 'Intro',
                link: '/guide/intro/1_intro',
              },
              {
                title: 'Verziókezelés',
                link: '/guide/intro/2_versioning',
              },
              {
                title: 'Git története',
                link: '/guide/intro/3_history',
              },
            ],
          },
          {
            title: 'Git használata',
            children: [
              {
                title: 'Telepítés és konfiguráció',
                link: '/guide/workshop/1_installation',
              },
              {
                title: 'Alapok',
                link: '/guide/workshop/2_basics',
              },
              {
                title: 'Branch-ek, elágazás',
                link: '/guide/workshop/3_branch',
              },
            ],
          },
          {
            title: 'Távoli Repository',
            children: [
              {
                title: 'Alapok és SSH kulcs',
                link: '/guide/remote/1_basics',
              },
            ],
          },
        ],
        fetchOptions: { cache: 'no-cache' },
      });
    </script>
  </body>
</html>