Skip to content

Commit

Permalink
Scaffolding the slides.
Browse files Browse the repository at this point in the history
  • Loading branch information
algogrit committed Mar 10, 2024
1 parent e5bbdeb commit b946768
Show file tree
Hide file tree
Showing 6 changed files with 169 additions and 0 deletions.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
elixir.slides.agarwalconsulting.com
1 change: 1 addition & 0 deletions TITLE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Elixir
Binary file added assets/images/me.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
105 changes: 105 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);

body {
background: #444;
font-family: 'Droid Serif';
}

h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}

.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }

.remark-slide-content {
background: #333;
color: white;
}

a {
color: #ccc;
text-decoration: none;
}

.left-column {
color: #ccc;
width: 20%;
height: 92%;
float: left;
}

.left-column strong {
color: #eee;
}

.tarkalabs-logo img {
max-height: 20px;
}

.signature {
position: absolute;
bottom: 15px;
left: 20px;
}

img {
background-size: cover;
max-width: 100%;
}

.right-column {
width: 75%;
float: right;
padding-top: 1em;
}

.image-credits {
font-size: 10px;
position: absolute;
bottom: 40px;
right: 20px;
}
.image-credits::before {
font-size: 10px;
content: 'Image Credits: ';
}

.content-credits {
font-size: 10px;
position: absolute;
bottom: 55px;
right: 20px;
}
.content-credits::before {
font-size: 10px;
content: 'Content Credits: ';
}

body.light {
background: #333;
}

body.light .remark-slide-content {
background: white;
color: #333;
}

body.light a {
color: #888;
}

body.light .left-column {
color: #888;
}

body.light .left-column strong {
color: #444;
}

code {
display: inline-block !important;
text-align: left;
}
18 changes: 18 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Elixir</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="index.css"/>
</head>
<body>
<script src="https://remarkjs.com/downloads/remark-latest.min.js">
</script>
<script>
var slideshow = remark.create({
sourceUrl: 'slides.md',
highlightStyle: 'tomorrow-night'
});
</script>
</body>
</html>
44 changes: 44 additions & 0 deletions slides.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
layout: true

.signature[@algogrit]

---

class: center, middle

# Elixir

Gaurav Agarwal

---

# Agenda

---

class: center, middle

![Me](assets/images/me.png)

Software Engineer & Product Developer

Director of Engineering & Founder @ https://codermana.com

ex-Tarka Labs, ex-BrowserStack, ex-ThoughtWorks

---
class: center, middle

```elixir
IO.puts "Hello, World!"
```

---

class: center, middle

Code
https://github.com/AgarwalConsulting/elixir_training

Slides
https://elixir.slides.agarwalconsulting.com

0 comments on commit b946768

Please sign in to comment.