Skip to content

Commit 52a8f79

Browse files
committed
Template do F0rmig4
1 parent 8f2864c commit 52a8f79

File tree

79 files changed

+3825
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+3825
-1
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site/*
2+
node_modules/*
3+
4+
*.swp
5+
.jekyll-cache/
6+
Gemfile.lock

404.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
title: 404
4+
---
5+
6+
<article>
7+
<h1>Page not found !</h1>
8+
<h3>Sorry but the page you are looking for cannot be found.</h3>
9+
</article>
10+

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'jekyll'

Gruntfile.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
module.exports = function (grunt) {
2+
'use strict';
3+
4+
grunt.initConfig({
5+
pkg: grunt.file.readJSON('package.json'),
6+
cssmin: {
7+
dist: {
8+
src: ['assets/css/master.css'],
9+
dest: 'assets/css/all.min.css'
10+
}
11+
},
12+
uglify: {
13+
my_target: {
14+
files: {
15+
'assets/js/all.min.js': ['assets/js/easteregg.js']
16+
}
17+
}
18+
}
19+
});
20+
21+
grunt.loadNpmTasks('grunt-contrib-cssmin');
22+
grunt.loadNpmTasks('grunt-contrib-uglify');
23+
24+
// Default task(s).
25+
grunt.registerTask('default', ['cssmin', 'uglify']);
26+
27+
}

README.markdown

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Pesonal Web Site - f0rmig4
2+
3+
## Description
4+
This is my personal site, I intend to share it with my projects and work experiences.
5+
6+
This site:
7+
8+
- Responsive, Mobile friendly;
9+
- Based on Jekyll and HTML5;
10+
- Static, faster and optimized.
11+
12+
## Run
13+
git clone git@github.com:f0rmig4/f0rmig4.github.io.git
14+
cd f0rmig4.github.io.git
15+
bundle exec jekyll serve
16+
17+
## Run Grunt
18+
nvm install v12.2.0
19+
npm install -g grunt-cli
20+
npm install
21+
grunt
22+
23+
## References and Further Reading
24+
25+
Jekyll's project home page:
26+
27+
https://github.com/mojombo/jekyll
28+
29+
The author of Jekyll is Tom Preston-Werner:
30+
31+
http://tom.preston-werner.com/

_config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
permalink: /blog/:title
2+
3+
# Themes are encouraged to use these universal variables
4+
# so be sure to set them if your theme uses them.
5+
#
6+
title : f0rmig4
7+
description: Site do f0rmig4. Engenheiro de software, artesão de bits, pai da Luz, apaixonado por games e por todos outros cacarecos tecnológicos.
8+
keywords: site f0rmig4, engenheiro de software, artesão de bits, desenvolvedor web
9+
author :
10+
name : f0rmig4
11+
email : f0rmig4@protonmail.com
12+
github : https://github.com/f0rmig4
13+
twitter: https://twitter.com/f0rmig4
14+
facebook: http://www.facebook.com/f0rmig4
15+
linkdin: http://br.linkedin.com/in/f0rmig4
16+
17+
production_url : http://f0rmig4.github.io/

_includes/analytics.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<script>
2+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
3+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
4+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
5+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
6+
7+
ga('create', 'UA-52745216-1', 'auto');
8+
ga('send', 'pageview');
9+
</script>

_includes/comments.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!--
2+
<br>
3+
<a alt="comentários f0rmig4" title="Deixe seu comentário" class="btn" id="btn-comments">Comentários</a>
4+
<br>
5+
-->

_includes/shared.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<a class="share" target="_blank" href="http://twitter.com/home?status={{page.title}} {{site.production_url}}{{page.url}} Via @f0rmig4">Compartilhar Twitter</a>
2+
<a class="share" target="_blank" href="http://www.facebook.com/sharer/sharer.php?u={{site.production_url}}{{page.url}}">Compartilhar Facebook</a>
3+
<p>&nbsp;</p>

0 commit comments

Comments
 (0)