Initial commit: Angular frontend and Expressjs backend

This commit is contained in:
chamikaJ
2024-05-17 09:32:30 +05:30
parent eb0a0d77d6
commit 298ca6beeb
3548 changed files with 193558 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
extends layout
block content
.container
div(style='display: flex;position: absolute;top: 0;bottom: 0;height: 100vh;align-items: center;')
div
img(src='/assets/images/worklenz-logo.png' style='width: 140px;margin-bottom: 10px;')
if error_title
h2.hero-title.h2-mobile.mt-0.is-revealing(style='margin-bottom: 0;')=error_title
if error_message
p(style='font-size: 18px;margin-bottom: 0;')=error_message
if error_message2
p(style='font-size: 18px;')=error_message2
if error_image
img(src=error_image style='width: 210px;margin-bottom: 40px;')

View File

@@ -0,0 +1,25 @@
- const title = "Worklenz | Resource Management Simplified"
- const description = "The only tool you need to open in the morning to get your work done."
- const keywords = "Resource management, worklenz, project management, task management, gantt chart, kanban"
doctype html
html(lang='en')
head
base(href="/")
meta(charset='utf-8')
meta(http-equiv='X-UA-Compatible' content='IE=edge')
meta(name='viewport' content='width=device-width, initial-scale=1')
title=title
meta(name='title' content=title)
meta(name='description' content=description)
link(rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lato:400,400i|Roboto:500')
link(rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css')
link(rel='stylesheet' href='/assets/css/style.css')
link(rel="shortcut icon", href="/favicon.ico", type="image/x-icon")
body.is-boxed.has-animations
block content