Last active
December 20, 2015 04:59
-
-
Save vagnerzampieri/6074434 to your computer and use it in GitHub Desktop.
Blog frelleto
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| layout: post | |
| title: "Blog do Frelleto" | |
| author: Vagner Zampieri | |
| date: 2013-07-20 9:17:05 | |
| categories: comunicado | |
| --- | |
| O blog nasceu, fico muito feliz em anunciar isso e espero que esse seja o primeiro post de muitos. Se você quer conhecer mais o Frelleto fica ligado no blog e no [site][site]. | |
| O blog vai falar sobre nossas experiências em criar o frelleto, assuntos técnicos sobre Ruby, Ralis, Js, jekyll, Sinatra, HTML5, CSS3, arquitetura e muito mais. | |
| Vamos comentar sobre outros posts e divulgar novidades, princiaplemente no [Facebook][facebook], [Twitter][twitter]. | |
| [site]: http://frelleto.com.br | |
| [facebook]: https://www.facebook.com/Frelleto | |
| [twitter]: https://twitter.com/Frelleto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="disqus_block"> | |
| <div id="disqus_thread"></div> | |
| <script type="text/javascript"> | |
| /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ | |
| var disqus_shortname = 'frelleto'; // required: replace example with your forum shortname | |
| var disqus_indentifier = '{{ page.url }}'; | |
| var disqus_url = 'http://blog.frelleto.com{{ page.url }}'; | |
| /* * * DON'T EDIT BELOW THIS LINE * * */ | |
| (function() { | |
| var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; | |
| dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; | |
| (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); | |
| })(); | |
| </script> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| layout: default | |
| title: Blog - Frelleto | |
| --- | |
| <div id="home"> | |
| <h3>Blog Posts</h3> | |
| <ul class="posts"> | |
| {% for post in site.posts %} | |
| <li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a> - {{ post.author }}</li> | |
| <hr/> | |
| {% endfor %} | |
| </ul> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment