Skip to content

Commit

Permalink
submodule configured for local testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nasif43 committed Jun 19, 2024
1 parent 0c5d2bc commit 82be487
Show file tree
Hide file tree
Showing 8 changed files with 58 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
package-lock.json
node_modules
.env
googleccfb7547499a2c8b.html
googleccfb7547499a2c8b.html
yarn.lock
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "themes/hello-friend-ng"]
path = themes/hello-friend-ng
url = https://github.com/rhazdon/hugo-theme-hello-friend-ng.git
url = git@github.com:rhazdon/hugo-theme-hello-friend-ng.git
4 changes: 2 additions & 2 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ paginate = 10
dateform = "Jan 2, 2006"
dateformShort = "Jan 2"
dateformNum = "2006-01-02"
dateformNumTime = "2006-01-02 15:04"
dateformNumTime = "2006-01-02 01:04 pm"

# Subtitle for home
homeSubtitle = "and you can find me using any of the links below"
Expand All @@ -22,7 +22,7 @@ paginate = 10
images = [""]

[languages]
[languages.en]
[languages.en.params]
title = "This is Muhtasim Hossain"
subtitle = "Portfolio"
keywords = ""
Expand Down
49 changes: 49 additions & 0 deletions content/posts/something.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animated ASCII Text</title>
<style>
body {
background-color: #000;
color: #0f0;
font-family: monospace;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.ascii-art {
white-space: pre;
text-align: center;
animation: color-change 5s infinite;
}
@keyframes color-change {
0% { color: #0f0; }
25% { color: #f00; }
50% { color: #00f; }
75% { color: #ff0; }
100% { color: #0f0; }
}
</style>
</head>
<body>
<div class="ascii-art">
<pre>
_____ ______ ___ ___ ___ ___ _________ ________ ________ ___ _____ ______
|\ _ \ _ \|\ \|\ \|\ \|\ \|\___ ___\\ __ \|\ ____\|\ \|\ _ \ _ \
\ \ \\\__\ \ \ \ \\\ \ \ \\\ \|___ \ \_\ \ \|\ \ \ \___|\ \ \ \ \\\__\ \ \
\ \ \\|__| \ \ \ \\\ \ \ __ \ \ \ \ \ \ __ \ \_____ \ \ \ \ \\|__| \ \
\ \ \ \ \ \ \ \\\ \ \ \ \ \ \ \ \ \ \ \ \ \|____|\ \ \ \ \ \ \ \ \
\ \__\ \ \__\ \_______\ \__\ \__\ \ \__\ \ \__\ \__\____\_\ \ \__\ \__\ \ \__\
\|__| \|__|\|_______|\|__|\|__| \|__| \|__|\|__|\_________\|__|\|__| \|__|
\|_________|
</pre>
</div>
</body>
</html>
```

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"Target":"main.2a064c455b0ecbd6b1481b3bf9df2441e95838691022f40a5338c2cb1244f075.css","MediaType":"text/css","Data":{"Integrity":"sha256-KgZMRVsOy9axSBs7+d8kQelYOGkQIvQKUzjCyxJE8HU="}}
{"Target":"main.949191c1dcc9c4a887997048b240354e47152016d821198f89448496ba42e491.css","MediaType":"text/css","Data":{"Integrity":"sha256-lJGRwdzJxKiHmXBIskA1TkcVIBbYIRmPiUSElrpC5JE="}}
2 changes: 1 addition & 1 deletion themes/hello-friend-ng
Submodule hello-friend-ng updated 570 files
2 changes: 1 addition & 1 deletion tina/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const branch =
process.env.GITHUB_BRANCH ||
process.env.VERCEL_GIT_COMMIT_REF ||
process.env.HEAD ||
"main";
"master";

export default defineConfig({
branch,
Expand Down

0 comments on commit 82be487

Please sign in to comment.