Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit 54ce2a7

Browse files
committed
Merge branch 'master' into main
2 parents 7a11fbd + 967e9bc commit 54ce2a7

File tree

3 files changed

+96
-5
lines changed

3 files changed

+96
-5
lines changed

docs/_config.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
remote_theme: halivert/halivert.github.io
1+
assets: "https://halivert.dev/assets"
2+
title: "Rutas Laravel en JS"
3+
description: >-
4+
Paquete composer para utilizar rutas de Laravel en archivos JS con
5+
un comando.

docs/_layouts/repo.html

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<!DOCTYPE html>
2+
<html lang="es-MX" class="dark">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta
6+
name="viewport"
7+
content="width=device-width, initial-scale=1, shrink-to-fit=no"
8+
/>
9+
10+
<link rel="stylesheet" href="{{ site.assets }}/css/solarized.css" />
11+
12+
<link
13+
rel="stylesheet"
14+
href="{{ site.assets }}/css/halivert-layout.css"
15+
/>
16+
17+
<link rel="stylesheet" href="{{ site.assets }}/css/halivert.css" />
18+
<link rel="stylesheet" href="{{ site.assets }}/css/halivert-dark.css" />
19+
20+
<link rel="stylesheet" href="{{ site.assets }}/css/fa.min.css"/>
21+
22+
{%-
23+
assign gistTheme = "https://cdn.rawgit.com"
24+
| append: "/lonekorean/gist-syntax-themes/b737b139/stylesheets"
25+
| append: "/solarized-dark.css"
26+
-%}
27+
28+
<link rel="stylesheet" href="{{ gistTheme }}" type="text/css"/>
29+
30+
<meta name="telegram:channel" content="@halivertsblog" />
31+
32+
<meta name="monetization" content="$ilp.uphold.com/yJJL4YrpRMQi">
33+
34+
<script src="https://unpkg.com/turbolinks" defer></script>
35+
<script src="{{ site.assets }}/js/main.js"></script>
36+
<script src="{{ site.assets }}/js/nav.js" defer></script>
37+
38+
<title>{{ site.title }}</title>
39+
40+
{% seo title=false %}
41+
{% if site.has_math %}
42+
{% include katex.html %}
43+
{% elsif site.has_instant_view %}
44+
<meta property="has_instant_view" />
45+
{% endif %}
46+
</head>
47+
48+
<body class="has-background-light">
49+
<nav class="repo fixed-top-bar">
50+
<button
51+
id="theme-switcher-corner"
52+
class="button theme-switcher is-invisible"
53+
onclick="changeTheme('theme-switcher-corner')"
54+
data-turbolinks-permanent
55+
style="border-radius: 0"
56+
>
57+
<span class="icon">
58+
<i class="fas" aria-hidden="true"></i>
59+
</span>
60+
</button>
61+
62+
<a
63+
href="{{ site.github.repository_url }}"
64+
class="button github"
65+
style="border-radius: 0"
66+
>
67+
<span>Ver en github</span>
68+
<span class="icon">
69+
<i class="fab fa-github" aria-hidden="true"></i>
70+
</span>
71+
</a>
72+
</nav>
73+
74+
<main class="is-size-5">
75+
<section class="hero is-primary repo">
76+
<div class="hero-body">
77+
<div class="container">
78+
<h1 class="title is-2">{{ site.title }}</h1>
79+
<h2 class="subtitle">{{ site.description }}</h2>
80+
</div>
81+
</div>
82+
</section>
83+
84+
<section class="section">
85+
<div class="container content">
86+
{{ content }}
87+
</div>
88+
</section>
89+
</main>
90+
</body>
91+
</html>

docs/index.md

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
---
22
layout: repo
3-
title: "Rutas Laravel en JS"
4-
description: >-
5-
Paquete composer para utilizar rutas de Laravel en archivos JS con
6-
un comando.
73
---
84

95
## Inicio rápido

0 commit comments

Comments
 (0)