The Aragon Network Token has vesting built in that limits the transferability of the token until a specified time.
ANT holders can transfer ANT in the normal way transfer(address to, uint value).
Special whitelisted holders can transfer them by creating a vested token grant grantVestedTokens(address to, uint value, uint64 startDate, uint64 cliffDate, uint64 vestingDate). All dates are expressed using UNIX timestamps in seconds (like the EVM).
The only whitelisted address will initially be Aragon's multisig for avoiding bad uses of this feature. In case a legit usecase of vesting is needed, you can ask Aragon to whitelist your address to create vestings.
Token transfers performed using the grantVestedTokens function result in an immediate balance transfer but limited liquidity until the vesting dates.
Some tips to interact safely with ANT include: