1
Fork 0

Embed presentation into page

This commit is contained in:
Jake Howard 2018-01-21 21:45:32 +00:00
parent 49c25ae99e
commit 81848212f8
Signed by: jake
GPG key ID: 57AFB45680EDD477
3 changed files with 20 additions and 1 deletions
content/posts
layouts/shortcodes
static/src/scss

View file

@ -16,4 +16,8 @@ The slides from my talk are available on my [GitHub](https://github.com/RealOran
React Native is a tricky platform to get started on, but once you understand the _qwerks_, I believe it truly is the future of cross-platform mobile development!
[Click here to view the slides](https://realorangeone.github.io/react-native-intro-dev-meeting/)
{{< iframe src="https://react-native-intro-dev-meeting.netlify.com/" >}}
The Presentation
{{< /iframe >}}
{{% repobutton %}}

View file

@ -0,0 +1,10 @@
{{ if .Inner }}
<figure>
<iframe src='{{ .Get "src" }}' class='{{ .Get "class" }}'></iframe>
<figcaption>
<small>{{ .Inner }} <a href='{{ .Get "src" }}' class="d-inline-block">View Full</a></small>
</figcaption>
</figure>
{{ else }}
<iframe src='{{ .Get "src" }}' class='{{ .Get "class" }}'></iframe>
{{ end }}

View file

@ -202,6 +202,11 @@ pre.chroma {
img {
width: 100%;
}
iframe {
width: 100%;
height: 50vh;
}
}
.plyr {