Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
naomod
Software Construction and Evolution (SCE)
Software Construction and Evolution Lectures
Commits
57aacf26
Commit
57aacf26
authored
Feb 22, 2018
by
Gerson Sunyé
Browse files
index ?
parent
48bb083b
Changes
1
Hide whitespace changes
Inline
Side-by-side
index.html
0 → 100644
View file @
57aacf26
<!doctype html>
<html
lang=
"en"
>
<head>
<meta
charset=
"utf-8"
>
<title>
Software Construction and Evolution
</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, minimal-ui"
>
<link
rel=
"stylesheet"
href=
"bower_components/reveal.js/css/reveal.css"
>
<link
rel=
"stylesheet"
href=
"bower_components/reveal.js/css/theme/simple.css"
id=
"theme"
>
<!-- For syntax highlighting -->
<link
rel=
"stylesheet"
href=
"bower_components/highlightjs/styles/zenburn.css"
>
<!-- Printing and PDF exports -->
<script>
var
link
=
document
.
createElement
(
'
link
'
);
link
.
rel
=
'
stylesheet
'
;
link
.
type
=
'
text/css
'
;
link
.
href
=
window
.
location
.
search
.
match
(
/print-pdf/gi
)
?
'
bower_components/reveal.js/css/print/pdf.css
'
:
'
bower_components/reveal.js/css/print/paper.css
'
;
document
.
getElementsByTagName
(
'
head
'
)[
0
].
appendChild
(
link
);
</script>
<!--[if lt IE 9]>
<script src="bower_components/reveal.js/lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div
class=
"reveal"
>
<div
class=
"slides"
>
<section
data-markdown=
"slides/index.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/construction.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/mapping.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/behavior.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/evolution.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/refactorings.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/unit-test.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/tdd-en.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/generation.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
<section
data-markdown=
"slides/patterns.md"
data-separator=
"^\n---$"
data-separator-vertical=
"^\n----$"
></section>
</div>
</div>
<script
src=
"bower_components/reveal.js/lib/js/head.min.js"
></script>
<script
src=
"bower_components/reveal.js/js/reveal.js"
></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal
.
initialize
({
controls
:
true
,
progress
:
true
,
history
:
true
,
center
:
true
,
slideNumber
:
true
,
width
:
1024
,
height
:
768
,
margin
:
0
,
transition
:
'
slide
'
,
// none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies
:
[
{
src
:
'
bower_components/reveal.js/lib/js/classList.js
'
,
condition
:
function
()
{
return
!
document
.
body
.
classList
;
}
},
{
src
:
'
bower_components/reveal.js/plugin/markdown/marked.js
'
,
condition
:
function
()
{
return
!!
document
.
querySelector
(
'
[data-markdown]
'
);
}
},
{
src
:
'
bower_components/reveal.js/plugin/markdown/markdown.js
'
,
condition
:
function
()
{
return
!!
document
.
querySelector
(
'
[data-markdown]
'
);
}
},
{
src
:
'
bower_components/reveal.js/plugin/highlight/highlight.js
'
,
async
:
true
,
condition
:
function
()
{
return
!!
document
.
querySelector
(
'
[data-html]
'
)
||
!!
document
.
querySelector
(
'
pre code
'
)
||
!!
document
.
querySelector
(
'
[data-markdown]
'
);
},
callback
:
function
()
{
hljs
.
initHighlightingOnLoad
();
}
},
{
src
:
'
bower_components/reveal.js/plugin/zoom-js/zoom.js
'
,
async
:
true
},
{
src
:
'
bower_components/reveal.js/plugin/notes/notes.js
'
,
async
:
true
},
{
src
:
'
js/loadhtmlslides.js
'
,
condition
:
function
()
{
return
!!
document
.
querySelector
(
'
[data-html]
'
);
}
}
]
});
</script>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment