Skip to content

Commit

Permalink
sweet-graduate-resume:0.1.0 (#772)
Browse files Browse the repository at this point in the history
Signed-off-by: innocentzero <[email protected]>
  • Loading branch information
InnocentZero committed Jul 4, 2024
1 parent 809139f commit 3e2cafd
Show file tree
Hide file tree
Showing 11 changed files with 5,490 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/preview/sweet-graduate-resume/0.1.0/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Copyright <2024><MD ISFARUL HAQUE>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

27 changes: 27 additions & 0 deletions packages/preview/sweet-graduate-resume/0.1.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Resume template

A basic resume template in typst.

To compile/watch, make sure you pass the argument `--font-path ./fonts/` to typst-cli.

If you use the helix editor, a configuration has been given in the repository.
This auto-compiles your document on saving and you can preview the results in real time
using a pdf viewer. Also provides autocomplete, code renaming, and other cool (LSP) features.

Make sure you have tinymist and typstyle installed before using the helix config.

## Preview

![basic template](./screenshot.png)

## LICENSE

The FontAwesome Free/Brand fonts are licensed under [Font Awesome Free License](https://github.com/FortAwesome/Font-Awesome?tab=License-1-ov-file)

The Codeberg SVG in the svg directory are licensed under [Creative Commons CC0](https://codeberg.org/Codeberg/Design/src/commit/ac514aa9aaa2457d4af3c3e13df3ab136d22a49a/LICENSE)

For the rest, see [LICENSE](./LICENSE).

## Fonts

For fonts, please install the fonts from the repository of the project in codeberg.
26 changes: 26 additions & 0 deletions packages/preview/sweet-graduate-resume/0.1.0/lib_fontawesome.typ
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//! typst-fontawesome
//!
//! https://github.com/duskmoon314/typst-fontawesome

// Implementation of `fa-icon`
#import "lib_impl.typ": *

// Generated icons
#import "lib_gen.typ": *

// Re-export the `fa-icon` function
// The following doc comment is needed for lsp to show the documentation

/// Render a Font Awesome icon by its name or unicode
///
/// Parameters:
/// - `name`: The name of the icon
/// - This can be name in string or unicode of the icon
/// - `solid`: Whether to use the solid version of the icon
/// - `fa-icon-map`: The map of icon names to unicode
/// - Default is a map generated from FontAwesome metadata
/// - *Not recommended* You can provide your own map to override it
/// - `..args`: Additional arguments to pass to the `text` function
///
/// Returns: The rendered icon as a `text` element
#let fa-icon = fa-icon.with(fa-icon-map: fa-icon-map)
Loading

0 comments on commit 3e2cafd

Please sign in to comment.