mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 08:13:49 +10:00
update documentation on new template addition
This commit is contained in:
4
docs/templates/README.md
vendored
4
docs/templates/README.md
vendored
@ -22,4 +22,8 @@ title: Templates
|
|||||||
<h2 id="castform"><a href="#castform" class="header-anchor">#</a> Castform</h2>
|
<h2 id="castform"><a href="#castform" class="header-anchor">#</a> Castform</h2>
|
||||||
<img src="./images/Castform.png" />
|
<img src="./images/Castform.png" />
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<h2 id="glalie"><a href="#glalie" class="header-anchor">#</a> Glalie</h2>
|
||||||
|
<img src="./images/Glalie.png" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
BIN
docs/templates/images/Glalie.png
vendored
Normal file
BIN
docs/templates/images/Glalie.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 335 KiB |
@ -91,7 +91,7 @@ const Glalie = () => {
|
|||||||
data.objective.enable && (
|
data.objective.enable && (
|
||||||
<div>
|
<div>
|
||||||
<Heading title={data.objective.heading} />
|
<Heading title={data.objective.heading} />
|
||||||
<p className="text-sm px-4 text-justify">{data.objective.body}</p>
|
<p className="text-sm text-justify">{data.objective.body}</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -236,8 +236,8 @@ const Glalie = () => {
|
|||||||
|
|
||||||
const ExtraItem = x => (
|
const ExtraItem = x => (
|
||||||
<tr key={x.id}>
|
<tr key={x.id}>
|
||||||
<td className="border font-medium px-4 py-2 text-sm">{x.key}</td>
|
<td className="border font-medium px-4 py-2 text-xs">{x.key}</td>
|
||||||
<td className="border px-4 py-2 text-sm">{x.value}</td>
|
<td className="border px-4 py-2 text-xs">{x.value}</td>
|
||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -246,7 +246,7 @@ const Glalie = () => {
|
|||||||
data.extras.enable && (
|
data.extras.enable && (
|
||||||
<div>
|
<div>
|
||||||
<Heading title={data.extras.heading} />
|
<Heading title={data.extras.heading} />
|
||||||
<table className="w-2/3 table-auto">
|
<table className="mt-4 w-2/3 table-auto">
|
||||||
<tbody>{data.extras.items.filter(x => x.enable).map(ExtraItem)}</tbody>
|
<tbody>{data.extras.items.filter(x => x.enable).map(ExtraItem)}</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 335 KiB |
Reference in New Issue
Block a user