Skip to content
Snippets Groups Projects
Select Git revision
  • dd650d02b6dbb27f1175db50eb7ff1ca553a58a6
  • main default protected
  • devel
  • feature/idefix
  • v0.2.0
5 results

README.Rmd

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.html 2.49 KiB
    <!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8" />
        <meta name="author" content="Dirk Sarpe and Christian Krause" />
        <title>git basics</title>
        <meta name="apple-mobile-web-app-capable" content="yes" />
        <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <link rel="stylesheet" href="reveal.js/css/reveal.css" />
        <link rel="stylesheet" href="reveal.js/lib/css/zenburn.css" />
        <style type="text/css">code{white-space: pre;}</style>
        <link rel="stylesheet" href="reveal.js/css/theme/black.css" id="theme" />
        <link rel="stylesheet" href="css/ribbon.css" />
      </head>
    
      <body>
    
        <!-- start of slides -->
    
        <div class="reveal">
          <div class="slides">
            <section id="title" data-markdown>
              # git seminar
    
              1.  [for beginner-level git users](basics.html)
            </section>
          </div>
        </div>
    
        <!-- ribbon -->
    
        <div class="ribbon-wrapper right">
          <div class="ribbon">
            <a href="https://git.idiv.de/sc/edu/git-seminar">
              edit
            </a>
          </div>
        </div>
    
        <!-- reveal.stuff -->
    
        <script src="reveal.js/lib/js/head.min.js"></script>
        <script src="reveal.js/js/reveal.js"></script>
    
        <script>
          Reveal.initialize({
            controls: true,
            progress: true,
            slideNumber: true,
            history: true,
            center: true,
            keyboard: true,
            maxScale: 1.5,
            slideNumber: false,
            theme: Reveal.getQueryHash().theme,
            transition: Reveal.getQueryHash().transition || 'default',
    
            dependencies: [
              { src: 'reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
              { src: 'reveal.js/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
              { src: 'reveal.js/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } },
              { src: 'reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
              { src: 'reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
              { src: 'reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
            ]
          });
        </script>
      </body>
    </html>