Skip to content
Snippets Groups Projects
Select Git revision
  • 40c1fa72d453a62da23ac4a173e18a77f80b7fe1
  • master default
2 results

core_sc000.h

Blame
  • 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',
                  },