Skip to content

Commit

Permalink
Dev (#178)
Browse files Browse the repository at this point in the history
* 📦 ci(deploy-docs.yml): added build scripts to the workflow

* ✨ feat(generators.js): added distribute function

Release-As: 2.5.0
  • Loading branch information
prjctimg authored Apr 7, 2024
1 parent 68309e5 commit 10fdb0f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/assets/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ export async function css() {
return src('*css/*.css').pipe(dest('../www/assets'));
}

// export async function img() {
// return src('*img/*').pipe(dest('../www/assets'));
// }
export async function img() {
return src('*img/*').pipe(dest('../www/assets'));
}

export const assets = series(css, js, fonts);
//export const clean = clean;
Expand Down
Binary file removed docs/assets/img/night-sky-over-mountains.jpg
Binary file not shown.
Binary file removed docs/assets/img/starry-night-over-lake.jpg
Binary file not shown.
7 changes: 4 additions & 3 deletions docs/assets/xml/layouts/base.njk
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@
<line x1="12" y1="22.08" x2="12" y2="12"></line>
</svg></a>
<a class="bg-slate-50 dark:bg-gray-300" href="mailto:[email protected]"><svg
xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 24 24"
stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round" class="stroke-slate-400 dark:stroke-slate-100 fill-slate-400 dark:fill-slate-100 stroke-[1.5px]
<path d=" M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z">
xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round"
class="stroke-slate-400 dark:stroke-slate-100 stroke-[1.5px]">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z">
</path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/xml/views/index.njk
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "./layouts/base.njk" %}

{% block content %}
{{home.content}}
{{home.content | safe}}
{% for mod, prop in home.demoData %}

<h2 class="font-mono text-slate-600 text-left text-lg font-semibold">Demos</h2>
Expand Down

0 comments on commit 10fdb0f

Please sign in to comment.