diff --git a/lectures/revealjs/08-workflow-example.adoc b/lectures/revealjs/08-workflow-example.adoc
new file mode 100644
index 0000000000000000000000000000000000000000..bb6a78a99540c7da9f643f3567ab4846695a24c0
--- /dev/null
+++ b/lectures/revealjs/08-workflow-example.adoc
@@ -0,0 +1,97 @@
+= Workflow Example 
+:customcss: slides.css
+:icons: font
+
+++++
+	<img id="main-logo" class="main-logo" src="images/template/main_logo_eng_no_text.png" width="300" alt="ntnu logo"/>
+++++
+
+[.smaller-80][.center-paragraph]
+IT1901 Fall 2019 - 8th Lecture
+
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Overview
+
+- User story
+- Issues
+- Git flow
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== User Story
+
+== User Story
+
+In the backlog of the simpleexample2 we get the following user story:
+
+- As a user I want to be able to add name, description etc.  to some of the locations I saved on the map in order to be easier to refer back to the most interesting places. 
+
+[.notes]
+--
+* we know from the PO / users that the expected points with additional info is relatively small
+--
+
+== From user story to issues
+
+[%step]
+- considering that the user story is to be included in the next iteration (sprint) then
+- the user story starts a process of discussion and planning within the development team
+- we need to understand what are the consequences of the new requirements for the different modules
+- we also need to create the necessary issues that
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Issues
+
+
+== The issues
+
+https://gitlab.stud.idi.ntnu.no/it1901/course-material/issues
+
+[background-color = "#124990"]
+[color = "#fff6d5"]
+== Typical git flow
+
+== Source code management
+[.center-paragraph]
+link:scm.html[Source code management (SCM)]
+
+
+++++
+ <div id="footer" class="footer">
+ 	<div style="display:table-row;">
+     <span class="element" style="width:150px;">
+     	<a href="https://www.ntnu.no" target="_blank">
+     		<img 	id="footer-logo" class="footer-logo" 
+     				src="images/template/logo_ntnu.png" 
+     				alt="ntnu logo" height="28"/>
+     	</a>
+     </span>
+     <span class="element" style="width:300px;">| IT1901 - 8th lecture </span>
+     <span class="element">| Workflow example </span>
+     <span class="element">&nbsp;&nbsp;&nbsp;&nbsp;</span>
+  </div>   
+ </div>
+ 
+ <div id="vertical-ntnu-name" class="vertical-ntnu-name">
+ 	<span class="helper"></span>
+ 	<img src="images/template/vertical-ntnu-name.png" alt="Norwegian University of Science and Technology" />
+ </div>
+ 
+ <script type="text/javascript">
+     window.addEventListener("load", function() {
+         revealDiv = document.querySelector("body div.reveal")
+         footer = document.getElementById("footer");
+         revealDiv.appendChild(footer);
+         
+         titleSlideDiv = document.querySelector("div.slides section.title")
+         mainLogo = document.getElementById("main-logo");
+         titleSlideDiv.prepend(mainLogo);
+         
+         vertName =  document.getElementById("vertical-ntnu-name");
+         revealDiv.appendChild(vertName);
+     } );
+ </script>
+++++