Skip to content

Commit 66cbb14

Browse files
adjust blog
1 parent 8039043 commit 66cbb14

Some content is hidden

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

51 files changed

+2340
-5753
lines changed

.editorconfig

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
11+
# Matches multiple files with brace expansion notation
12+
# Set default charset
13+
[*.{js,py}]
14+
charset = utf-8
15+
16+
# 4 space indentation
17+
[*.py]
18+
indent_style = space
19+
indent_size = 4
20+
21+
# Tab indentation (no size specified)
22+
[Makefile]
23+
indent_style = tab
24+
25+
# Indentation override for all JS/TS under src directory
26+
[*.{js,jsx,ts,tsx}]
27+
indent_style = space
28+
indent_size = 2
29+
30+
# Indentation override for all CSS/SASS under src directory
31+
[*.{css,scss,sass}]
32+
indent_style = space
33+
indent_size = 2
34+
35+
# Matches the exact files either package.json or buildspec.yml
36+
[{package.json,buildspec.yml}]
37+
indent_style = space
38+
indent_size = 2

.gitignore

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

LICENSE

Lines changed: 0 additions & 22 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1 @@
1-
# Simple Blog Template
2-
3-
[Simple Blog Template](https://earlbread.github.io/simple-blog-template/)
4-
is a basic blog homepage HTML starter template forked from
5-
[Startbootstrap Blog Home](https://github.com/BlackrockDigital/startbootstrap-blog-home).
6-
7-
## Getting Started
8-
9-
To begin using this template, choose one of the following options to get started:
10-
* Clone the repo: `git clone https://github.com/earlbread/simple-blog-template.git`
11-
* Fork the repo
12-
13-
## Creator
14-
15-
Simple Blog Template was created by and is maintained by
16-
[Seunghun Lee](https://github.com/earlbread).
17-
18-
* https://linkedin.com/in/waydi1
19-
* https://github.com/earlbread
20-
21-
Simple Blog Template is based on the
22-
[Bootstrap](http://getbootstrap.com/) framework created by
23-
[Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat),
24-
and forked from
25-
[Startbootstrap Blog Home](https://github.com/BlackrockDigital/startbootstrap-blog-home).
26-
27-
28-
## Copyright and License
29-
30-
Copyright 2016 Seunghun Lee. Code released under the [MIT](https://github.com/earlbread/simple-blog-template/blob/master/LICENSE) license.
31-
1+
# Heading

_includes/layout.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
title: My Rad Blog
3+
---
4+
5+
<!DOCTYPE html>
6+
<html lang="en">
7+
<head>
8+
<meta charset="utf-8">
9+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
10+
<meta name="viewport" content="width=device-width, initial-scale=1">
11+
<meta name="description" content="">
12+
<meta name="author" content="">
13+
14+
<title>{{ title }}</title>
15+
<link href="/css/bootstrap.min.css" rel="stylesheet">
16+
<link href="/css/simple-blog-template.css" rel="stylesheet">
17+
18+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
19+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
20+
<!--[if lt IE 9]>
21+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
22+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
23+
<![endif]-->
24+
25+
</head>
26+
27+
<body>
28+
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
29+
<div class="container">
30+
<div class="navbar-header">
31+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
32+
<span class="sr-only">Toggle navigation</span>
33+
<span class="icon-bar"></span>
34+
<span class="icon-bar"></span>
35+
<span class="icon-bar"></span>
36+
</button>
37+
<a class="navbar-brand" href="/">Bruno Miglioretto</a>
38+
</div>
39+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
40+
<ul class="nav navbar-nav navbar-right">
41+
<li>
42+
<a href="about">Sobre o blog</a>
43+
</li>
44+
</ul>
45+
</div>
46+
</div>
47+
</nav>
48+
<div class="container">
49+
{{ content }}
50+
</div>
51+
</div>
52+
53+
<footer>
54+
<div class="container">
55+
<div class="row">
56+
<div class="col-lg-12">
57+
<p>Copyright &copy; Bruno Miglioretto 2025</p>
58+
</div>
59+
</div>
60+
</div>
61+
</footer>
62+
<script src="js/jquery.js"></script>
63+
<script src="js/bootstrap.min.js"></script>
64+
</body>
65+
</html>

_includes/post.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: layout.html
3+
---
4+
5+
<div class="row">
6+
<div class="col-lg-12">
7+
<h1 class="post-title">{{ title }}</h1>
8+
<p class="lead">
9+
Por {{ author }}
10+
</p>
11+
12+
<hr>
13+
<p>Postado em {{ posted_at }}</p>
14+
15+
<hr>
16+
{{ content }}
17+
<hr>
18+
</div>
19+
</div>

_site/README/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<h1>Heading</h1>

_site/_includes/index.html

Whitespace-only changes.
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="description" content="">
8+
<meta name="author" content="">
9+
10+
<title></title>
11+
<link href="css/bootstrap.min.css" rel="stylesheet">
12+
<link href="css/simple-blog-template.css" rel="stylesheet">
13+
14+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
15+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
16+
<!--[if lt IE 9]>
17+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
18+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
19+
<![endif]-->
20+
21+
</head>
22+
23+
<body>
24+
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
25+
<div class="container">
26+
<div class="navbar-header">
27+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
28+
<span class="sr-only">Toggle navigation</span>
29+
<span class="icon-bar"></span>
30+
<span class="icon-bar"></span>
31+
<span class="icon-bar"></span>
32+
</button>
33+
<a class="navbar-brand" href="index.html">Bruno Miglioretto</a>
34+
</div>
35+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
36+
<ul class="nav navbar-nav navbar-right">
37+
<li>
38+
<a href="about.html">About</a>
39+
</li>
40+
<li>
41+
<a href="login.html">Login</a>
42+
</li>
43+
<li>
44+
<a href="signup.html">Sign up</a>
45+
</li>
46+
</ul>
47+
</div>
48+
</div>
49+
</nav>
50+
<div class="container">
51+
<div class="row">
52+
53+
</div>
54+
</div>
55+
56+
<footer>
57+
<div class="container">
58+
<div class="row">
59+
<div class="col-lg-12">
60+
<p>Copyright &copy; Bruno Miglioretto 2025</p>
61+
</div>
62+
</div>
63+
</div>
64+
</footer>
65+
<script src="js/jquery.js"></script>
66+
<script src="js/bootstrap.min.js"></script>
67+
</body>
68+
</html>

_site/_includes/post/index.html

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en">
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<meta name="description" content="">
9+
<meta name="author" content="">
10+
11+
<title>My Rad Blog</title>
12+
<link href="/css/bootstrap.min.css" rel="stylesheet">
13+
<link href="/css/simple-blog-template.css" rel="stylesheet">
14+
15+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
16+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
17+
<!--[if lt IE 9]>
18+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
19+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
20+
<![endif]-->
21+
22+
</head>
23+
24+
<body>
25+
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
26+
<div class="container">
27+
<div class="navbar-header">
28+
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
29+
<span class="sr-only">Toggle navigation</span>
30+
<span class="icon-bar"></span>
31+
<span class="icon-bar"></span>
32+
<span class="icon-bar"></span>
33+
</button>
34+
<a class="navbar-brand" href="/">Bruno Miglioretto</a>
35+
</div>
36+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
37+
<ul class="nav navbar-nav navbar-right">
38+
<li>
39+
<a href="about">Sobre o blog</a>
40+
</li>
41+
</ul>
42+
</div>
43+
</div>
44+
</nav>
45+
<div class="container">
46+
47+
<div class="row">
48+
<div class="col-lg-12">
49+
<h1 class="post-title">My Rad Blog</h1>
50+
<p class="lead">
51+
Por
52+
</p>
53+
54+
<hr>
55+
<p>Postado em </p>
56+
57+
<hr>
58+
59+
<hr>
60+
</div>
61+
</div>
62+
63+
</div>
64+
</div>
65+
66+
<footer>
67+
<div class="container">
68+
<div class="row">
69+
<div class="col-lg-12">
70+
<p>Copyright &copy; Bruno Miglioretto 2025</p>
71+
</div>
72+
</div>
73+
</div>
74+
</footer>
75+
<script src="js/jquery.js"></script>
76+
<script src="js/bootstrap.min.js"></script>
77+
</body>
78+
</html>

0 commit comments

Comments
 (0)