ultimate-jekyll-manager 0.0.140 → 0.0.141
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -59,6 +59,14 @@ npm start -- --debug=true
|
|
|
59
59
|
```bash
|
|
60
60
|
npm start -- --ujPluginDevMode=true
|
|
61
61
|
```
|
|
62
|
+
* `--profile` - Enables Jekyll build profiling to see how long each phase takes.
|
|
63
|
+
```bash
|
|
64
|
+
npm start -- --profile
|
|
65
|
+
```
|
|
66
|
+
* `--all-posts` - Disables the development post limit (15 posts) and builds with all posts. Useful when you need to test with full blog content.
|
|
67
|
+
```bash
|
|
68
|
+
npm start -- --all-posts
|
|
69
|
+
```
|
|
62
70
|
|
|
63
71
|
### Other ENV variables
|
|
64
72
|
```bash
|
|
@@ -12,7 +12,7 @@ layout: themes/[ site.theme.id ]/frontend/core/base
|
|
|
12
12
|
<div class="col-lg-10">
|
|
13
13
|
<div class="text-center">
|
|
14
14
|
<!-- Member Image -->
|
|
15
|
-
<div class="mb-4 avatar avatar-
|
|
15
|
+
<div class="mb-4 avatar avatar-5xl">
|
|
16
16
|
{%- uj_member page.member.id, "image-tag", class="rounded-circle object-fit-cover shadow-lg team-member-image" -%}
|
|
17
17
|
</div>
|
|
18
18
|
|